I'm really struggling to understand what's amiss.  My index.jsp page forward
to home.faces, in my tiles-def I have a corresponding home.tiles.  No major
problem - the default css renders the tabbedPanes.

Only when I click a commandButton (whose listener gets some data from db2)
the navigation from this button returns home.faces (tile) but the tabs
render as buttons and the border is missing.

Any issue with 1.1.4 t:panelTabbedPane?  I can't get any of my style
attributes of the pane to render.

Code:
<h:form id="searchForm">
        <t:saveState value="searchForm" />
        <f:loadBundle basename="messages" var="msgs" />
        
        <f:subview id="panelTabbedPane2">
                <t:panelTabbedPane 
                                activeTabStyleClass="editorPane_activeTab"  
                                serverSideTabSwitch="false"
                                activeSubStyleClass="editorPane_tabContent"
                                tabContentStyleClass="editorPane_tabContent">
                        <t:panelTab id="tab1" label="Search by Customer #" >
                                <h:outputLabel for="inp1" value="Enter a 
customer number  " />
                                <h:inputText id="inp1" 
value="#{searchForm.userCustomerNumber}" />
                                <f:verbatim>
                                        <br>
                                </f:verbatim>
                                <t:commandButton value="Search"
                                        
actionListener="#{searchForm.searchByCustomerNumberListener}" 
                                        
action="#{searchForm.findCustomerByIdAction}" />
                        </t:panelTab>
...
--
View this message in context: 
http://www.nabble.com/1.1.4-t%3ApanelTabbedPane-loses-style--tiles--t1785372.html#a4865884
Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to