265266267268269270271
* * @param colIndex the column index * @param width the column width */ public void setColumnWidth(int colIndex, double width) { ComponentHelper.setLayoutData(getItem(colIndex), new ColumnData(width)); }
163164165166167168169
* * @param colIndex the column index * @param width the column width */ public void setColumnWidth(int colIndex, double width) { ComponentHelper.setLayoutData(columns.get(colIndex), new ColumnData(width)); }
251252253254255256257