I'm new to codeigniter so sorry for the simple question.
I want to run formvalidator for my ajax process. How can I return the valdiation errors as JSON? Is there a better way to do this?
Thanks
|
I'm new to codeigniter so sorry for the simple question. I want to run formvalidator for my ajax process. How can I return the valdiation errors as JSON? Is there a better way to do this? Thanks |
|||
|
|
|
you haven't really stated what you are doing. i am going to assume that you have a form that you want to save data in, using ajax, so that you don't have any of those pesky save/submit buttons. also, i am guessing that you have some sort of .change() handler that sends the form element to the ajax handler as a post variable as a name/value pair. the problem you will run into, is that when you run the form validator on your data it will always fail. because the form validator needs all of the fields for that form, and you will only send one piece of data at a time. normally in the code igniter example code you check to see if the 'run' method passess or not. in your case it doesn't really matter because it will always fail, so don't bother checking. here is a snippet of some example code
....
in my snippet, a json object is returned to the ajax post. in the jquery ajax post,the success handler has this snippet of code.
in my form, i have a three column format, where:
hopefully that makes some sense to you. |
|||
|
|