Author: vmolotkov
Date: 2007-11-09 12:53:08 -0500 (Fri, 09 Nov 2007)
New Revision: 3876
Modified:
trunk/sandbox/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
trunk/sandbox/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx
Log:
width&height for items list
Modified:
trunk/sandbox/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss
===================================================================
---
trunk/sandbox/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-11-09
17:52:35 UTC (rev 3875)
+++
trunk/sandbox/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/css/orderingList.xcss 2007-11-09
17:53:08 UTC (rev 3876)
@@ -21,8 +21,8 @@
}
.ol_list {
- width : 300px;
- height : 250px;
+ /*width : 600px;
+ height : 650px;*/
background : #FFFFFF;
border : 1px solid #bfbfc0;
margin : 0px 8px 8px 8px;
Modified:
trunk/sandbox/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx
===================================================================
---
trunk/sandbox/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx 2007-11-09
17:52:35 UTC (rev 3875)
+++
trunk/sandbox/ui/orderingList/src/main/templates/org/richfaces/htmlOrderingList.jspx 2007-11-09
17:53:08 UTC (rev 3876)
@@ -28,15 +28,17 @@
<tr>
<td>
<div id="#{clientId}headerBox" class="ol_list">
- <div class="ol_list_header">
+ <div class="ol_list_header" style="width:
#{component.attributes['listHeight']}px;">
<table id="#{clientId}internal_header_tab"
class="ol_internal_header_tab" cellpadding="0"
cellspacing="0">
<f:call name="encodeHeader"/>
</table>
</div>
- <div id="#{clientId}contentBox"
class="ol_list_content">
+ <div id="#{clientId}contentBox" class="ol_list_content"
style="width: #{component.attributes['listHeight']}px;
height:#{component.attributes['listWidth']}px;">
<table id="#{clientId}internal_tab"
class="ol_internal_tab" cellpadding="0" cellspacing="0">
- <tbody id="#{clientId}tbody"><vcp:body>
- <f:call name="encodeRows" /></vcp:body>
+ <tbody id="#{clientId}tbody">
+ <vcp:body>
+ <f:call name="encodeRows" />
+ </vcp:body>
</tbody>
</table>
</div>