• Sanam Karki 5
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
Why is this hapenning?

For example I am typing <apex:page>

before I type it, I get a list of possible tags to choose from. I choose the apex:page tag and push ENTER and the tag becomes this:

=""

more in the images below:

User-added image

User-added image
The below is my code. Question is why this is displaying 20 account records instead of all? 

<apex:page standardController="Account" recordSetVar="accounts">
   <apex:pageBlock title="Accounts">
       <apex:pageBlockTable value="{!accounts}" var="a" rows="1000">
       <apex:column headerValue="Name">
        <apex:outputLink value="/{!a.Id}"> {!a.name} </apex:outputLink>
        </apex:column>
       </apex:pageBlockTable>
   </apex:pageBlock>
</apex:page>