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
Dhruv NirgudeDhruv Nirgude 

why i am getting this kind of VF page???

Here are my script and VF Page

<apex:page StandardController="Account" recordSetVar="item">
    <apex:form>
        <apex:pageBlock>
            <apex:pageBlockTable value="{!item}" var="a">
                <apex:column>
                    <apex:facet name="header"><apex:inputcheckbox/></apex:facet>   
                    <apex:inputcheckbox/>   
                </apex:column>
                
                <apex:column value="{!a.Name}"/>
                <apex:column value="{!a.industry}"/>
                <apex:Column value="{!a.phone}"/>
                <apex:column value="{!a.Rating}"/> 
                
                <apex:column headerValue="Action">
                    <apex:commandbutton value="add"/>
                    <apex:commandbutton value="del"/>
                </apex:column>
                
                <apex:column>
                    <apex:commandlink value="edit"/>&nbsp;|&nbsp;
                    <apex:commandlink value="new"/>
                </apex:column>
            </apex:pageBlockTable> 
        </apex:pageBlock>
    </apex:form>
</apex:page>
after scripting getting this paper
PriyaPriya (Salesforce Developers) 

hey Dhruv,

Go to the classic mode and then try to preview your Visualforce page and check if any difference come.

Thanks,

Priya Ranjan

Dhruv NirgudeDhruv Nirgude
Hey Priya thank you for your response but still i am having this problem in Classic mode.  Below i am attaching screenshot of the page please check it once.


User-added image