Details
-
Type: Improvement
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.7.1
-
Fix Version/s: 1.7.2
-
Component/s: ICE-Components
-
Labels:None
-
Environment:All
Description
mimacom needs to access the resizable column widths of a dataTable.
Markup is like this:
<ice:dataTable id="iceDataTbl" clientOnly="false"
{resizeableColumnBean.columnWidths}"var="employee" resizableColumnWidths="#
value="#{resizeableColumnBean.employees}"
resizable="true" >
where #{resizeableColumnBean.columnWidths}
is like this:
private String columnWidths = "88px,108px,208px";
public void setColumnWidths(String columnWidths)
{ this.columnWidths = columnWidths; }public String getColumnWidths()
{ return this.columnWidths; }columnWidths is dynamically updated as sizes of columns change on the client side.