Hi!
I was wondering if there is a way to select a specific grid row when the grid is configured for virtual scrolling and the row is not currently loaded.
Can i bring to row into view and select it?
Currently i'm selecting the row's using this line of code:
I was wondering if there is a way to select a specific grid row when the grid is configured for virtual scrolling and the row is not currently loaded.
Can i bring to row into view and select it?
Currently i'm selecting the row's using this line of code:
$(
"#"
+ gridName).data(
"kendoGrid"
).select($(
"#"
+ gridName).data(
"kendoGrid"
).table.find(
'tr[data-id="'
+ rowDataId +
'"]'
));
This works perfectly if the row is already loaded and in view.