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.
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #17280 | Fri Aug 01 17:30:20 MDT 2008 | yip.ng | Added resizableColumnWidths for dataTable. |
Files Changed | ||||
![]() ![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #17281 | Fri Aug 01 17:34:41 MDT 2008 | yip.ng | Added resizableColumnWidths for dataTable. |
Files Changed | ||||
![]() ![]() ![]() |
Field | Original Value | New Value |
---|---|---|
Assignee | Yip Ng [ yip.ng ] |
Fix Version/s | 1.7.2 [ 10130 ] | |
Assignee Priority | P1 |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Fix Version/s | 1.7.2RC1 [ 10140 ] | |
Fix Version/s | 1.7.2 [ 10130 ] |
Fix Version/s | 1.7.2 [ 10130 ] | |
Fix Version/s | 1.7.2RC1 [ 10140 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
Assignee Priority | P1 | |
Assignee | Yip Ng [ yip.ng ] |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #21834 | Fri Jul 02 18:15:55 MDT 2010 | adnan.durrani | Fix for |
Files Changed | ||||
![]() |
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.