Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Feb 17, 2009 22:06
open dhtmlx forum
grid

How i check all the cell of 5th of all the row contain the same value

if the row 1 and 5 column contain RAJ then

How i check all the 5 th cell of all row contain RAJ or Another String

on Row created Event
Answer posted by Support on Feb 18, 2009 05:32
can be done as

var pos = mygrid.findCell("RAJ"); //dhtmlxgrid_filter.js required
for (var i=0; i<pos.length; i++)
   mygrid.cells(pos[i][0],5).setChecked(true);