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

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);