All Questions
Tagged with jquery-ui-dialog validation
25 questions
0
votes
2
answers
102
views
jQuery dialog validation using jquery.validate()
When I click on the submit button, it still submits the form without validating the fields. I looked on other solutions here too, but no question mentions about what to do in the click function on ...
0
votes
1
answer
718
views
jQuery Validate not working with Ajax and jQuery dialog
On my website I have a navigation and a main content area. When you click on a navigation link, the content inside the main content area always gets loaded via ajax. If you click the link "Contact", a ...
1
vote
2
answers
1k
views
HTML form validation with Google Apps Script's HTML Service
I'm trying to use HTML form validation when using Google Apps Script's HTML Service. As another user asked, according to the documentation example, you must use a button input instead of a submit ...
0
votes
2
answers
903
views
jQuery validation for textbox and Radio buttons
I have a form in "jQuery Dialog Box" and in which there is a <textarea> and the other is a pair of <input type="radio" /> buttons
Both are required fields and if the user leaves the ...
0
votes
3
answers
1k
views
Input from textboxes not displaying in a jQuery UI Dialog box
I am running into a problem where I want to display user input in a jQuery UI dialog box, but it isn't capturing any values. I know that the plugin works, but my code for displaying user input from ...
0
votes
0
answers
53
views
How to validate movable(portable) application
I'm having trouble with validating one movable app.
When I open the app and fill-up the data, I send this data to the controller. Then validate this data and if any error I wan to show this error on ...
2
votes
1
answer
1k
views
AngularJS form validation using JqueryUI Dialog
I'm trying to validate a form using Angular, the problem is that the form is inside a JqueryUI dialog and there is no submit button to validate angular against. How am I able to achieve this? For ...
0
votes
1
answer
134
views
MVC JQuery Dialog Client Validation
Why does validation not work here? I have a link that when clicked opens a dialog loading its content from a partial view. I want to validate the form when the button on the dialog is clicked. I load ...
0
votes
1
answer
79
views
No validation working on the form inside the jQuery UI dialog
No validation plugin is working on the form contained inside a jquery Ui dialog box. Using Bassistance jQuery validation plugin, works great out of the ui modal box, no luck working it on the form ...
1
vote
1
answer
3k
views
how to submit a form after jquery dialog
I have a mvc4 web application a page with form
@using (Html.BeginForm()) {
@Html.ValidationSummary(true)
<fieldset>
<legend>News</legend>
<div class="editor-label"&...
6
votes
3
answers
7k
views
Display error message in jQuery popup or in alert in MVC 4
Am using DataAnnotation for validation, I want to show the error message(Data annotation) in a pop up (dialog/alert) instead of showing it on view....
I have implemented the code using this link..
...
0
votes
1
answer
6k
views
jQueryUI DatePicker Validation
I am trying to validate the date fields so when you if you select a date in the future and in the second input box you select today's date it should not let you submit the form.
I have it working so ...
0
votes
1
answer
275
views
ASP.NET Form with jQuery dialogs, validate the dialog but NOT the parent form
My ASP.NET form has a small number of modal pop-up helper dialogs on it. We are using jQuery dialogs for these. I need to perform some validations on the fields on the modal, before the data in the ...
2
votes
1
answer
1k
views
jQuery validation plugin refreshes IE8
Validating a form with the jQuery validation plugin (v1.10.0) coupled with a jQueryUI dialog (v1.9.0, and not 1.9.1 as CDN'ed) and of course jQuery (v1.8.2) refreshes the page on both IE7 and IE8 and ...
2
votes
0
answers
178
views
jQuery dialog not firing if I add validation
I want to popup a jquery dialog form to allow user to fill in their data. The dialog is not firing when I click on a link_button if I add validation to some of fields in the dialog. However, it will ...