Author: ilya_shaikovsky
Date: 2008-04-29 10:06:50 -0400 (Tue, 29 Apr 2008)
New Revision: 8312
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml
Log:
http://jira.jboss.com/jira/browse/RF-3252
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-04-29
13:50:43 UTC (rev 8311)
+++
trunk/samples/richfaces-demo/src/main/webapp/richfaces/simpleTogglePanel/examples/difftypes.xhtml 2008-04-29
14:06:50 UTC (rev 8312)
@@ -6,24 +6,20 @@
xmlns:rich="http://richfaces.org/rich">
<h:form>
- <h:panelGrid columns="3" columnClasses="tpanels"
width="100%">
-
- <rich:simpleTogglePanel switchType="server" label="Server Switch
Type">
+ <h:panelGrid columns="3" columnClasses="tpanels,tpanels,tpanels"
width="100%">
+ <rich:simpleTogglePanel switchType="server" label="Server Switch
Type" width="250px">
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">
+ <rich:simpleTogglePanel switchType="ajax" label="Ajax Switch
Type" width="250px">
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">
+ <rich:simpleTogglePanel switchType="client" label="Client Switch
Type" width="250px">
The switching between showing and hiding the toggle panel content
performs on the client side.
</rich:simpleTogglePanel>
-
</h:panelGrid>
</h:form>