attaches a grid-like editor to a grid's column
subgrid | object | the subgrid object |
sInd | number | the column of the main grid, which should contain the subgrid |
tInd | number | the column of the subgrid, its value will be displayed in the main grid cell |
mygrid.setColTypes("grid");
mygrid.setSubGrid(subgrid,sInd,tInd);
read more about a grid-like editor in the article Column Types
Back to top