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
nothingisreal68nothingisreal68 

Using extensions in a VisualForce Page

I created a simple visualForce page to test a class method that I created, which simple returns a string.

<apex:page standardController="Case" title="Date Test"
    extensions="caseExtension" showHeader="false" sidebar="false">
    {!shiftManager}
</apex:page>


In my extension caseExtension, I have a method called getShiftManager(), which like i said, returns a string.
yesterday everything was working fine, the string displayed correctly on my visualforce page. Today, when I
try to run it, I get the error message:

Unknown poperty 'CaseStandardController.shiftManager'

It seems like it is looking for a field on the standard controller now, which of course isn't there, and not recognizing my
extension. Any help would be greatly appreciated.
canonwcanonw
Can you list the source code?  It's hard to say without the code.
canonwcanonw
Or you make change to shiftManger and make it not accessible anymore.