how to get the "rowid" value from the return value of functi


Current version of grid returns array of indexes as result of findCell command ( we plan change it to IDs in oncoming version )
so to get ID you can use code similar to next

var res=grid.findCell(“some”);
for (var i=0; i<res.length; i++)
    alert(“Data found at row ID==”+grid.getRowId(res[i][0]);