how to use serializeRowData option with editRow method in jqgrid to post a json data to server ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
serializeRowDatamay be used to take a row’s data and serialize it to (for example) JSON or XML prior to POSTing it to the server. Here is an article that provides an overview of its usage. Basically, here is example code to use it along with json2.js (from json.org) to serialize data to JSON prior to being submitted:Does that help?