I have a basic CRUD form that uses PageMethods to update the user details, however the Validators don't fire off, I think I need to manually initialize the validators and check whether the validation has passed in my javascript save method. Any ideas on how to do this?
|
|
|
|
|
|
|
Ok so I finally solved this: You need to call Page_ClientValidate() in your Save javascript method and If it returns true continue with the save, the Page_ClientValidate() initiates the client side validators, See code below:
|
||
|
|
|
|
If you use Firefox, you can use the FireBug plugin. It has great javascript debugging support. |
||
|
|
|
|
what are you using for development? VS 2008 supposedly has better JS debugging, haven't tried it yet. For Ajax you can use the Sys.Debug obj |
||
|
|
