Reputation: 1354
I am using one rich:combobox(let say id="PARENT") and want to change dropdown list of two other rich:combobox(let say "CHILD1" and "CHILD2") according to selected attribute in first rich:combobox(PARENT).
How to do this ?
For changing only one rich:combobox(CHILD1 only), i used a4j:support(reRender) tag in "PARENT", but for two , i am not getting.
Upvotes: 2
Views: 8271
Reputation: 17182
The reRender attribute will take multiple ids separated by commas.
<a4j:support event="onchange" reRender="parent,child1,child2" />
Upvotes: 12