Validate jQuery Modal ?
-
How can I get server side validators to work with JQuery UI Modal with validation groups ? :(
Query has nothing to do with server side code. If you want they server side validation events to fire then have the page do a post back.
I know the language. I've read a book. - _Madmatt
-
Query has nothing to do with server side code. If you want they server side validation events to fire then have the page do a post back.
I know the language. I've read a book. - _Madmatt
-
Actually the problem was modal being attached outside of
tag. Can you suggest any other jquery validation plugin which emulates validation groups on asp.net webforms ?
If the controls are not inside a form tag it doesn't matter, the validators won't work anyway. Is there a reason you need to use a server validation method? You can't use Page_Vaiidate("validation group name") within javascript?
I know the language. I've read a book. - _Madmatt
-
If the controls are not inside a form tag it doesn't matter, the validators won't work anyway. Is there a reason you need to use a server validation method? You can't use Page_Vaiidate("validation group name") within javascript?
I know the language. I've read a book. - _Madmatt
I have different jQuery UI Modal dialogs on a webform. I need to emulate validation groups on each UI Modal so I was trying server side validators because I could not emulate validation groups with jQuery. I did not knew about page_validate previously. What do you suggest ? Should I just fire the server validation groups with Page_Validate or do I use a separate plugin ? :sigh:
-
I have different jQuery UI Modal dialogs on a webform. I need to emulate validation groups on each UI Modal so I was trying server side validators because I could not emulate validation groups with jQuery. I did not knew about page_validate previously. What do you suggest ? Should I just fire the server validation groups with Page_Validate or do I use a separate plugin ? :sigh:
Page_Validate will not fire server validation methods, it will perform the validations on the client.
I know the language. I've read a book. - _Madmatt