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
Eric VitucciEric Vitucci 

Visualforce page in salesforce console is undefined

I am trying to create a visualforce side bar in the service console. I have the page working correctly but when I put it in the console it shows undefined. 

User-added image

Here is the code

<apex:page standardController="Case"> <apex:pageBlock > <apex:pageBlockSection > <apex:outputField value="{!Case.Status}"/> <apex:outputField value="{!Case.ContactPhone}"/> <apex:outputField value="{!Case.Origin}"/> </apex:pageBlockSection> </apex:pageBlock> </apex:page>