Open Grid on specific record positioned

Hi ,
I would open grid on specific record positioned.
The grid is in smartrendering . How i can do it ??
many thanks
Antonello

In case of static smart rendering you can use showRow after data loading to show necessary row.
In case of dynamic smart rendering, situation is a bit more complicated, as you can’t use ids for not loaded yet rows. In such case you can try to set the scroll state manually

mygrid.objBox.scrollTop = 20*desired_row_index;

Hi Stanislav,

I have tried but any action make the instruction " mygrid.objBox.scrollTop = 20*desired_row_index;"

Have you other solution ??

Thanks a lot!!
Antonello

There is no other solutions.
Can you provide some more details why the above solution doesn’t work for you?