0 Replies Latest reply on Jul 26, 2008 6:20 PM by sachin.parnami

    Issue With <f: subview>

      Hi All,

      I had some problem with f: subview, can anybody tell me why i was getting Null Value.



      <f:subview id="no_forwardaddress"rendered="#{userforwardphoneaddresses.rowAvailable}">

      <h:dataTable value="#{userblockphoneaddresses}" var="phone">
      <h:column>
      <f:facet name="header">Phone Address</f:facet>
      <h:outputText value="#{phone.phoneAddress}"></h:outputText>
      </h:column>
      <h:column>
      <f:facet name="header">Delete</f:facet>
      <h:selectBooleanCheckbox value="#{searchSelections[phone]}" />
      </h:column>
      </h:dataTable>
      </f:subview>

      when i was trying to get selectBooleanCheckbox's value it was giving Null to me.

      And now, when i have removed <f: subview> from this block of code it is working fine.

      Is there anybody know the reason.