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 | ||||
MODIFY
/icefaces/trunk/icefaces/component-metadata/src/main/resources/conf/ice_properties/ice-dataTable-props.xml
MODIFY /icefaces/trunk/icefaces/component/src/com/icesoft/faces/component/ext/HtmlDataTable.java MODIFY /icefaces/trunk/icefaces/core/src/com/icesoft/faces/renderkit/dom_html_basic/TableRenderer.java |
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 | ||||
MODIFY
/icefaces/branches/icefaces-1.7/icefaces/component/src/com/icesoft/faces/component/ext/HtmlDataTable.java
MODIFY /icefaces/branches/icefaces-1.7/icefaces/component-metadata/src/main/resources/conf/ice_properties/ice-dataTable-props.xml MODIFY /icefaces/branches/icefaces-1.7/icefaces/core/src/com/icesoft/faces/renderkit/dom_html_basic/TableRenderer.java |
yip.ng
created issue -
yip.ng
made changes -
Field | Original Value | New Value |
---|---|---|
Assignee | Yip Ng [ yip.ng ] |
yip.ng
made changes -
Fix Version/s | 1.7.2 [ 10130 ] | |
Assignee Priority | P1 |
yip.ng
made changes -
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Ken Fyten
made changes -
Fix Version/s | 1.7.2RC1 [ 10140 ] | |
Fix Version/s | 1.7.2 [ 10130 ] |
Ken Fyten
made changes -
Fix Version/s | 1.7.2 [ 10130 ] | |
Fix Version/s | 1.7.2RC1 [ 10140 ] |
Ken Fyten
made changes -
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 | ||||
MODIFY
/icefaces/scratchpads/glimmer/compat/core/src/main/javascript/extras/extras.js
|
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.