There does not appear to be a public method to get the raw row data simply, like: ``` javascript $('#myGrid').bootgrid('rowData', 123); ``` Is there such a method or way to get any row data simply?
Activity
bjoernbur commentedon Jan 29, 2015
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)
nisanov commentedon Feb 10, 2015
Thanks, bjoernbur.
atreyeemukhopadhyay commentedon Dec 10, 2015
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.
EdwardsNick commentedon Apr 12, 2016
@atreyeemukhopadhyay
See pull request #280