Loading a specific row in smart rendering

Hello,

I use dhtmlxgrid in dynamic smart rendering mode and I’d like to scroll on the last row by program. I know I can use the showRow method, but the last row need to be loaded before. How can I load this row in dynamic smart rendering mode. Is there an API?

You can call load() method with necessary parameters:

grid.load(url+"?posStart=49999&count=14", function(){ grid.showRow("row_id") })