Categories | Question details Back To List | ||
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); |