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
yogesh.rankawatyogesh.rankawat 

apex page property 'pageStyle' is not working correctly

<apex:page> property 'pageStyle' is not working correctly  

when i use following code:

<style>
  .PageClass{
    background-color:Blue;
  }
</style>

and
<apex:page id="pg"  standardcontroller="Candidate__c" extensions="ControllerAIG_Demo" pageStyle="PageClass">
it gives error:
No enum const class common.page.PageStyle.PageClass

even i use inline CSS style as
<apex:page id="pg"  standardcontroller="Candidate__c" extensions="ControllerAIG_Demo" pageStyle="background-color:Blue;">
it gives error:
No enum const class common.page.PageStyle.background-color:Blue;

any idea ....   :smileywink:
Soni21Soni21

Use TabStyle Instead of PageStyle..