You need to sign in to do that
Don't have an account?

Hi, i have to write a trigger in which i need to hide/show table as per value selected in the multi-picklist. in VF page.
Example : i have a multi picklist with values A,B,C,D & have related table A1,B2,C3,D4 for each. if A & C are selected only its related A1 ,C3 table should be visible in visual force page.
is it possible that "onSelect" of A & C from multi-picklist , table related (A1, C3) to it should be visible.
is it possible that "onSelect" of A & C from multi-picklist , table related (A1, C3) to it should be visible.
Call action function on change of picklist, which will set some controller variable of picklist.
on thay basis you can rerender output panels.
<apex:outputpanel rendered ="{!Aselected}">
Table A1
</outputpanel>