09-09-2007 10:56 AM
09-16-2007 07:54 AM
09-16-2007 10:54 AM
09-17-2007 11:36 AM
<h:dataTable id="myTable" border="0" binding="#{MyBean.myTable}" value="#{MyBean.childRefs}" var="line">
<h:column>
<h:selectBooleanCheckbox id="myCheckbox" immediate="true"/>
</h:column>
<h:column>
<h:commandLink id="cmd-link" action="#{MyBean.getChildrenForNode}" immediate="true">
<h:outputText id="output-text" value="#{line.QName.localName}"/>
</h:commandLink>
</h:column>
</h:dataTable>
if(myTable!= null)
{
for (int i=0; i < myTable.getRowCount(); i++)
{
myTable.setRowIndex(i);
if(checkedValues.contains(((ChildAssociationRef)myTable.getRowData()).getChildRef()))
{
UISelectBoolean box = (UISelectBoolean)myTable.findComponent("categoryCheckbox");
box.setSelected(true);
box.setValue(true);
box.saveState(context);
}
}
}
09-17-2007 01:08 PM
09-18-2007 04:53 AM
02-18-2008 11:38 AM
<a:richList viewMode="details" pageSize="20"
…
var="promotion"
…
<a:column primary="true">
<f:facet name="header">
<a:outputText value="Bulk" styleClass="header" />
</f:facet>
<h:selectBooleanCheckbox title="bulkUpdates" value="#{promotion.selected}"></h:selectBooleanCheckbox>
</a:column>
</a:richList>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.