How can you reload a SINGLE jqGrid row?
We know how to reload the entire grid – but we just want to update a single row when we know that the data in the row has changed.
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.
If you hold the data on the server and your server support filtering of data (single of advance searching) then you can use the same url which you use in jqGrid for your manual
jQuery.ajaxcalling. You should set only the filter toidequal to the row which you need to refresh. On successful response from the server you can usesetRowDataordelRowDatato update the row contain or to delete the row.