Latest development is that it works if I don't use the facelet template it is
in.... (The full version of the page is available on the first post, mind
you). Here's layout.xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";
      xmlns:ui="http://java.sun.com/jsf/facelets";
      xmlns:h="http://java.sun.com/jsf/html";
      xmlns:f="http://java.sun.com/jsf/core";
      xmlns:t="http://myfaces.apache.org/tomahawk";
      xmlns:s="http://myfaces.apache.org/sandbox";>
      
<head>
        <title>
                LS Manager - <ui:insert name="title"/>
        </title>
        <link rel="stylesheet" type="text/css" href="css/master.css"/>
        <link rel="stylesheet" type="text/css" href="css/tabbedPane.css"/>
        <link rel="stylesheet" type="text/css" href="css/creationWizard.css"/>
</head>

<body>
        <div class="container">
                <h:form>
                        <div class="nav">
                                <h:panelGrid columns="1" cellspacing="4" 
border="1"
style="background-color: #EBEEF8" id="navigationBar">
                                        <t:graphicImage 
value="images/ls_logo.PNG"/>
                                        <t:jscookMenu layout="hbr" 
theme="ThemeOffice">
                                                <t:navigationMenuItem 
itemLabel="Home" action="home" />
                                
                                                <t:navigationMenuItem 
itemLabel="Projects">
                                                        <t:navigationMenuItem 
itemLabel="Project Grid" action="projectGrid"
/>
                                                        <t:navigationMenuItem 
itemLabel="Create Project" action="saveProject"
/>
                                                        <t:navigationMenuItem 
itemLabel="Search Projects"
action="searchProjects" />
                                                
                                                        <t:navigationMenuItem 
value="#{menuBacker.yourProjectsItem}"/>
                                                </t:navigationMenuItem>
                        
                                                <t:navigationMenuItem 
itemLabel="Users">
                                                        <t:navigationMenuItem 
itemLabel="View Users" action="listUsers" />
                                                        <t:navigationMenuItem 
itemLabel="Search Users" action="searchUsers"
/>
                                                </t:navigationMenuItem>
                                        
                                                <t:navigationMenuItem 
itemLabel="Sign Off" action="logout" />
                                        </t:jscookMenu>
                                </h:panelGrid>
                        </div>
                </h:form>               
                
                <div class="pageHeader">
                        <ui:insert name="pageHeader"/>
                </div>
                
                <div class="left">
                        <ui:insert name="left"/>
                </div>
                
                <div class="right">
                        <ui:insert name="right"/>
                </div>
                
                <div class="footer">
                </div>
        </div>
</body>

</html>
--
View this message in context: 
http://www.nabble.com/Problems-With-saveState-t1780890.html#a4884466
Sent from the MyFaces - Users forum at Nabble.com.

Reply via email to