4 Replies Latest reply on Dec 24, 2006 3:41 AM by spambob

    pageflow step description problem

    spambob

      The EL in the pageflow description list isn't working!

      I use the latest CVS version and my page is configured like this:

      <page name="edit" view-id="/editUsecase.xhtml" redirect="true" no-conversation-view-id="/home.xhtml">
       <description>Edit Usecase: #{usecase.name}</description>
       <transition name="cancel" to="home">
       <action expression="#{usecasesBean.cancel}"/>
       </transition>
       <transition name="save" to="home">
       <action expression="#{usecasesBean.save}"/>
       </transition>
      </page>

      The conversation switcher is used like this:
      <h:form id="conversationForm">
       <h:selectOneMenu value="#{switcher.conversationIdOrOutcome}">
       <f:selectItems value="#{switcher.selectItems}" />
       </h:selectOneMenu>
       <h:commandButton action="#{switcher.select}" value="Switch" />
      </h:form>

      The output (in the conversation switcher) list is:
      Edit Usecase: #{usecase.name}

      Because this worked before: is this a bug or was something changed? If the later: how should one put the page description in jpdl.xml files now?