function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
SarisfdcSarisfdc 

Call method in actionfunction in Visualforce component

Hi,

I have component (without controller). I am using the component through the attribute of list and sring. I dont want to add the controller in it.
Now i want to call a method through actionfunction from the visualforce component. Please help me to how to do this.

Thanks
Sari
John Pipkin 14John Pipkin 14
Sarisfdc, 

A Visualforce component with no controller cannot call a controller method. You can have the component call an actionFunction inside the visualforce page, though. 

Component controllers can also share instances of page controllers. See https://developer.salesforce.com/page/Controller_Component_Communication for how to set that up.

Hope that helps