* @param supressEvent true to suppress width change event
*/
public void setColumnWidth(int colIndex, int width, boolean supressEvent) {
configs.get(colIndex).setWidth(width);
if (!supressEvent) {
ColumnModelEvent e = new ColumnModelEvent(this, colIndex);
e.setWidth(width);
fireEvent(Events.WidthChange, e);
}
}