DataTable issue
I have the following dataTable .Not showing all as it is quite large .But it works .In the ActivationRequestBuilder class which it is bound to I want to be able to see the values of the the table .
I have tried several approaches to getting the value of a hidden variable in the Data table but to no success .
requestItemDataTable.getAttributes().get("requestItemFormIdentifier");
Any one have any ideas.
//Declaring Data Table in ActivationRequestBuilder
private HtmlDataTable requestItemDataTable;
//Request Item section
<h:dataTable id="requestItemTable" rendered="#{sessionScope.activationSections.numberOfRequestItemSections > 0}" value="#{sessionScope.activationSections.requestItemSections}"
binding="#{activationRequestBuilder.requestItemDataTable}" styleClass="table-background" var="requestItemCurrentRow">
<h:column>
<h:panelGrid columns="4" cellspacing="5" styleClass="table-background" columnClasses="column-attributes,column-asterisk-attributes, column-attributes, column-attributes">
<h:outputLabel for="itemId">
<h:outputText value="Item Id:"/>
</h:outputLabel>
<%-- Idenfifies the Page you are on --%>
<h:inputHidden id="requestItemFormIdentifier" value="#{requestItemCurrentRow.requestItemFormIdentifier}"/>

