Modified the ace:ajax rendering code to handle differences between ACE components, and regular h: components, so that it can also be used with h: components. So far only verified with the h:selectManyCheckbox from the test scenario in ICE-7702.
This code varies noticeably between trunk and branch, so branch will require separate implementation and verification.
<f:subview id="testSub">
<h:form id="form">
<ace:tabSet id="sampleTabSet" clientSide="false">
<ace:tabPane id="toDoList" label="To Do List">
<h:selectManyCheckbox id="list" layout="pageDirection" selectedClass="selectedCheckBox">
<f:selectItems value="#
{tabSet.toDoList}
"
var="listItem"
itemValue="#
{listItem.value}
"
itemLabel="#
{listItem.key}
"/>
<ace:ajax execute="@this" render="sampleTabSet"/>
</h:selectManyCheckbox>
trunk
Subversion 28310
Modified the ace:ajax rendering code to handle differences between ACE components, and regular h: components, so that it can also be used with h: components. So far only verified with the h:selectManyCheckbox from the test scenario in
ICE-7702.This code varies noticeably between trunk and branch, so branch will require separate implementation and verification.
<f:subview id="testSub">
{tabSet.toDoList}<h:form id="form">
<ace:tabSet id="sampleTabSet" clientSide="false">
<ace:tabPane id="toDoList" label="To Do List">
<h:selectManyCheckbox id="list" layout="pageDirection" selectedClass="selectedCheckBox">
<f:selectItems value="#
"
{listItem.value}var="listItem"
itemValue="#
"
{listItem.key}itemLabel="#
"/>
<ace:ajax execute="@this" render="sampleTabSet"/>
</h:selectManyCheckbox>
trunk
Subversion 28310