Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Oct 16, 2008 22:57
open dhtmlx forum
selecting a column

How can i select a particular column in a row in grid?for selecting row we use mygrid.selectRowById(id);Like that is there any way to select a column
Answer posted by Support on Oct 17, 2008 03:21
You can't select whole column
The grid can select some row 
    grid.selectRow(rowInd)
    grid.selectRowById(rowId)
or some cell
    grid.selectCell(rowInd,cellInd);