I'm trying to select rows dynamically on a datagrid using the grid.selection.setSeleted()
and grid.selection.getSeleted()
methods.
I can select rows that are currently undrawn (i.e you must use the horizontal scroll bar to see them). But when I try to get the row contents using grid.selection.getSeleted()
, the array returns nulls
instead of the row data.
Is there any way to get the selected row data even if it is not currently drawn? Although it's slower can I force dojo to draw the entire grid, even if some of it is not displayed?