I have a slickgrid in which some rows are hidden by a filter (DataView).
When I now call the getSelectedRows method of the grid I get the indices of the visibly sele
You have a mistake. It needs to be "getDataItem" and not "getData".
var selectedData = [],enter code here`selectedIndexes; selectedIndexes = _grid.getSelectedRows(); jQuery.each(selectedIndexes, function (index, value) { selectedData.push(_grid.getDataItem(value)); });