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
jdogsailingjdogsailing 

Visualforce Error?

I've got a page, a snippet of which follows, that works great when I replace the {!obj.detailQuestion} with raw text. In this situation; however, I get an unhelpful Visualforce Error notifier which only says: "getDetailQuestion()". The wrapper class returned by {!Detail} has the instance variable declared as "public String detailQuestion {get;set;}.

 

What does this mean?

 

    <apex:form>
        <apex:variable var="obj" value="{!Detail}">
            <ol>
                <li>{!obj.detailQuestion} <br />
 

 

Best Answer chosen by Admin (Salesforce Developers) 
jdogsailingjdogsailing
The unhelpful error message was caused because I actually did not make that method public. Tsk, tsk...