438439440441442443444445446447
public void setColumnWidth(int colIndex, int width, boolean suppressEvent) { ColumnConfig<M, ?> c = getColumn(colIndex); if (c != null) { c.setWidth(width); if (!suppressEvent) { fireEvent(new ColumnWidthChangeEvent(colIndex, c)); } } }
429430431432433434435436437438