1 Reply Latest reply on Jan 13, 2008 4:09 AM by tony.herstell1

    Text not appearing but table does in same outputPanel

    tony.herstell1

      The panel is only displayed on a press of a button...

      <a4j:commandButton id="addEventsManagementSoftwareButton"
       value="#{messages.resource_events_management_software}" immediate="true"
       action="#{bookingController.addResource('resource_events_management_software')}"
       reRender="resourceAddButtons, resourceAddedTable, resourceAdditionAttemptMessages"
       onclick="highlightSelectedResources({duration:1.5})" />
      




      displays the table with an entry in it...

      <rich:panel id="selectedResources" style="border:none;">
       <a4j:outputPanel id="resourceAddedTable" layout="none">
       <center>
       <div class="sub3_title">
       <h:outputText value="#{messages.booking_resources}"
       rendered="#{bookingController.hasResources()}" />
       </div>
       <rich:dataTable var="eachResource" value="#{bookingResources}"
       rendered="#{bookingController.hasResources()}">
       <rich:column>
       <f:facet name="header">
       <h:outputText value="#{messages.booking_resource_column_header}" />
       </f:facet>
       <h:outputText value="#{messages[eachResource.inlLabel]}" />
       </rich:column>
      
      
      
      I cannot figure out eh combination to get the Title to appear (have to press refresh).
      
      Any ideas?