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
reatlimecoreatlimeco 

Type to use in apex:attribute to pass the recordSetVar to a component controller

VF page: recordSetVar="filteredSet"\> Component: Component controller: public [] componentControllerSet { get; set;} If I try to iterate through this set, I get the following error which suggests that the typing is wrong: [Lcore.apexpages.el.adapters.metadata.AbstractSObjectELAdapter; cannot be cast to common.apex.runtime.impl.IterableValue This changes if I change the processing to try to handle it as List .