Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by dido on May 20, 2008 06:08
open dhtmlx forum
smart rendering: working with only already downloaded rows

Is there a way to determine downloaded rows in order to work only with them?
I need a function similar to the getRowsNum() , but return available rows. And a function to return loaded rowIDs

Thx, Dido
Answer posted by Support on May 20, 2008 06:12
There is no separate list of already available rows, but you can use
    grid.forEachRow
itterator, which works with available rows only

    var count=0;
    grid.forEachRow(function(id){
       alert(id)
       count++;
    });
    alert(count);
Answer posted by Dido on May 20, 2008 06:25

It's exactly (100%) what i needed.

Thx,

Dido