We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There does not appear to be a public method to get the raw row data simply, like:
$('#myGrid').bootgrid('rowData', 123);
Is there such a method or way to get any row data simply?
The text was updated successfully, but these errors were encountered:
You could access the grid object using the following code:
$('#TableId').bootgrid().data('.rs.jquery.bootgrid')
Then you have access to the all the data on the grid (the property currentRows then contains the data)
Sorry, something went wrong.
Thanks, bjoernbur.
Is there a way I could get the selected row data of many rows present in the table by simply passing row-id ?
Right now getSelectedRows gives the selected rows by simply row ids rather the entire row data.
@atreyeemukhopadhyay
See pull request #280
rstaib
Successfully merging a pull request may close this issue.
There does not appear to be a public method to get the raw row data simply, like:
Is there such a method or way to get any row data simply?
The text was updated successfully, but these errors were encountered: