when getRowsNum() is valid

Hi,
could somebody tell me when the value getRowsNum for a grid with smart rendering is valid (comes from Server).
If I delay the method call for a second or two, the value is present. just after grid.load() it is 0 or have an old value.
Regards,
iavka

Please, try to call the getRowsNum method from the callback of the load method:
myGrid.load(url,function(){
myGrid.getRowsNum();
})

Thank you, sematik,
it works as expected.
Regards,
iavka