ADF Selection Components like af:selectBooleanRadio, af:selectOneChoice,af:selectBooleanCheckBox always cause problems when dealt with partialTriggers.
When a selection component is made as partial targets of any other ADF components, it does following:
if(component.isRendered() && component.getSubmittedValue() != null)
processComponent(component);
else
skipComponent(component);
Because of this, the values of such selection components get reset upon submission of source components and assigned default values to them.
When a selection component is made as partial targets of any other ADF components, it does following:
if(component.isRendered() && component.getSubmittedValue() != null)
processComponent(component);
else
skipComponent(component);
Because of this, the values of such selection components get reset upon submission of source components and assigned default values to them.
No comments:
Post a Comment