Thanks for your help.
grid.cells(0,i).getWidth();
When the table is no data, there will be mistakes in the future.
I just want to get the width of the grid.Please help me.
You can check DOM object of grid directly, as
var width = grid.entBox.offsetWidth;
The width of column can be checked as
var width = grid.getColWidth(index);