How I can retrieve data from jqgrid row, if I have only the number of the row?
For example, what do I have to do if I want the id column of the 3rd row?
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.
You can get the data by row id. So you can do following:
(here I suppose that the
<table>element of your jqGrid has id=”list”). After you know the id of the row you can get the row data with respect of getRowData method or the data from one cell only with respect of getCell method: