Author: ilya_shaikovsky
Date: 2008-05-22 09:26:10 -0400 (Thu, 22 May 2008)
New Revision: 8699
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataGrid/examples/form.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml
Log:
layout correction
plugnskin feature described.
Modified:
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties
===================================================================
---
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2008-05-22
13:24:39 UTC (rev 8698)
+++
trunk/samples/richfaces-demo/src/main/resources/org/richfaces/demo/common/components.properties 2008-05-22
13:26:10 UTC (rev 8699)
@@ -81,4 +81,5 @@
filtering=richDataIterators, Table Filtering, \t/images/ico_TableFiltering.gif,
\t\t/images/cn_TableFiltering.gif, dataTable.html,
jbossrichfaces/freezone/docs/tlddoc/rich/dataTable.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIDataTable.html,
\t\t\t\t\t/richfaces/filteringFeature.jsf
columns =richDataIterators, \t Columns, \t\t\t/images/ico_columns.gif,
\t\t/images/cn_Columns.gif, columns.html,
jbossrichfaces/freezone/docs/tlddoc/rich/columns.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/taglib/ColumnsTag.html,
\t\t\t\t\t/richfaces/columns.jsf
fileUpload =richInputs, \t File Upload, \t\t/images/ico_FileUpload.gif,
\t\t/images/cn_FileUpload.gif, fileUpload.html,
jbossrichfaces/freezone/docs/tlddoc/rich/fileUpload.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIFileUpload.html,
\t\t\t\t\t/richfaces/fileUpload.jsf
-StandardSkinning =richMisc, \t Standard Skinning,
\t\t/images/ico_StandardComponentsSkinning.gif,
\t\t/images/cn_StandardComponentsSkinning.gif,
ArchitectureOverview.html#StControlsSkinning,
jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html,
\t\t\t\t\t/richfaces/standardSkinning.jsf
\ No newline at end of file
+StandardSkinning =richMisc, \t Standard Skinning,
\t\t/images/ico_StandardComponentsSkinning.gif,
\t\t/images/cn_StandardComponentsSkinning.gif,
ArchitectureOverview.html\#StControlsSkinning,
jbossrichfaces/freezone/docs/tlddoc/rich/StandardSkinning.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html,
\t\t\t\t\t/richfaces/standardSkinning.jsf
+plugnskin =richMisc, \t Plug'n'Skin, \t\t/images/ico_plugnskin.gif,
\t\t/images/cn_plugnskin.gif, ArchitectureOverview.html\#plugnskin,
jbossrichfaces/freezone/docs/tlddoc/rich/plugnskin.html,
jbossrichfaces/freezone/docs/apidoc/org/richfaces/component/UIfileUpload.html,
\t\t\t\t\t/richfaces/plugnskin.jsf
\ No newline at end of file
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataGrid/examples/form.xhtml
===================================================================
---
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataGrid/examples/form.xhtml 2008-05-22
13:24:39 UTC (rev 8698)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/dataGrid/examples/form.xhtml 2008-05-22
13:26:10 UTC (rev 8699)
@@ -7,7 +7,7 @@
<style>
.label{
font-weight:bold;
-}
+}
</style>
<rich:panel>
<f:facet name="header">
@@ -15,7 +15,7 @@
</f:facet>
<h:form>
<rich:dataGrid value="#{dataTableScrollerBean.allCars}"
var="car" columns="3" elements="9">
- <rich:panel>
+ <rich:panel style="width:200px">
<f:facet name="header">
<h:outputText value="#{car.make}
#{car.model}"></h:outputText>
</f:facet>
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml
===================================================================
---
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml 2008-05-22
13:24:39 UTC (rev 8698)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml 2008-05-22
13:26:10 UTC (rev 8699)
@@ -6,17 +6,17 @@
xmlns:rich="http://richfaces.org/rich">
<h:form>
- <h:panelGrid columns="3" columnClasses="tpanels,tpanels,tpanels"
width="100%">
- <rich:simpleTogglePanel switchType="server" label="Server Switch
Type" width="250px">
+ <h:panelGrid columns="3" width="100%"
columnClasses="tpanels,tpanels,tpanels">
+ <rich:simpleTogglePanel switchType="server" label="Server Switch
Type" height="90px">
The regular JSF form submission is processed during the changing mode between
showing and hidding the additional content.
</rich:simpleTogglePanel>
- <rich:simpleTogglePanel switchType="ajax" label="Ajax Switch
Type" width="250px">
+ <rich:simpleTogglePanel switchType="ajax" label="Ajax Switch
Type" height="90px">
This type allows to perform the partial view update instead of the
whole page reloading. You also can reRender other components
while the panel content is toggled.
</rich:simpleTogglePanel>
- <rich:simpleTogglePanel switchType="client" label="Client Switch
Type" width="250px">
+ <rich:simpleTogglePanel switchType="client" label="Client Switch
Type" height="90px">
The switching between showing and hiding the toggle panel content
performs on the client side.
</rich:simpleTogglePanel>