Author: alevkovsky
Date: 2008-09-02 04:32:53 -0400 (Tue, 02 Sep 2008)
New Revision: 10264
Modified:
trunk/samples/richfaces-demo/src/main/webapp/richfaces/plugnskin.xhtml
trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI.xhtml
Log:
Bug fixing(RF-4364,RF-4365)
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/plugnskin.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/plugnskin.xhtml 2008-09-02
01:04:57 UTC (rev 10263)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/plugnskin.xhtml 2008-09-02
08:32:53 UTC (rev 10264)
@@ -7,7 +7,13 @@
<ui:composition template="/templates/main.xhtml">
<ui:define name="title">RichFaces - Open Source Rich JSF Components -
Plug'n'Skin Feature</ui:define>
<ui:define name="body">
- <ui:include src="/templates/include/tab-panel.xhtml" />
+ <rich:tabPanel id="tabber" switchType="server"
styleClass="top_tab" contentClass="content_tab"
headerClass="header_tabs_class"
+ inactiveTabClass="inactive_tab" activeTabClass="active_tab"
selectedTab="#{componentNavigator.currentComponent.activeTab}"
+ valueChangeListener="#{componentNavigator.tabPanelSwitched}">
+ <rich:tab name="usage" label="Usage">
+ <ui:include src="/richfaces/plugnskin/usage.xhtml" />
+ </rich:tab>
+ </rich:tabPanel>
</ui:define>
</ui:composition>
</html>
Modified: trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI.xhtml
===================================================================
--- trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI.xhtml 2008-09-02
01:04:57 UTC (rev 10263)
+++ trunk/samples/richfaces-demo/src/main/webapp/richfaces/stateAPI.xhtml 2008-09-02
08:32:53 UTC (rev 10264)
@@ -8,18 +8,13 @@
<ui:define name="title">RichFaces - Open Source Rich JSF Components -
State Manager</ui:define>
<ui:define name="body">
<rich:tabPanel switchType="server" styleClass="top_tab"
contentClass="content_tab" headerClass="header_tabs_class"
inactiveTabClass="inactive_tab" activeTabClass="active_tab"
- selectedTab="#{componentNavigator.currentComponent.activeTab}">
+ selectedTab="#{componentNavigator.currentComponent.activeTab}">
<rich:tab label="Usage" name="usage">
<ui:include src="/richfaces/stateAPI/usage.xhtml"/>
</rich:tab>
<rich:tab label="Usage Details" name="details">
<ui:include src="/richfaces/stateAPI/examples/details.xhtml"/>
</rich:tab>
- <rich:tab name="info" label="Tag Information">
- <rich:insert
- src="/WEB-INF/#{componentNavigator.currentComponent.tagInfoLocation}"
- errorContent="/templates/include/tagInfoNotes.xhtml" />
- </rich:tab>
</rich:tabPanel>
</ui:define>
</ui:composition>
Show replies by date