Categories | Question details Back To List | ||
how to get the "rowid" value from the return value of function findcell()?
thx Answer posted on Jun 15, 2007 17:29 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]); Answer posted by Darya (Support) on Dec 09, 2014 21:40 Not much can be said in addition to the reply above, but you also can check explorerforum and new mysqli and find out what we have probably missed in our explanation. |