Automatically scroll to the bottom on load

Hi everyone.
I want to know if dhtmlxgrid is capable of setting an option where the grid can be automatically scroll to the bottom of the grid when the page is initially loaded.
If so, could you help me pinpoint where i should get started? I"ve looked everywhere and this:

dhtmlx.com/docs/products/kb/inde … =yes&s=dyn

seems to be a closest match. Can it also be done with dhtmlxgrid??\

To move scroll bar to make necessary row visible you can use showRow() method:

mygrid.showRow(row_id);

Appropriate row must be loaded before calling this method.