I have one Visualforce page and one Visualforce controller. I have different attributes defined in the controller of Visualforce page as shown below
public boolean firstPanel{get;set;}
public boolean secondPanel{get;set;}
public boolean thirdPanel{get;set;}
I also have a separate controller for Visualforce component which is being called inside in visualforce page and i am passing certain list of object in visualforce component from visualforce page. I have a function in the controller of Visualforce component which is being called when certain sets of operation is required.
Now i want when these operations are being called then attributes(firstPanel,secondPanel,thirdPanel) defined in the parent controller should be set in the component controller without redirecting. How can i accomplish this?