• lokesh malla
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hi when i am trying to create a visualforce page with the following commands the page is not showing any command buttons except the page block title so can any one help me with this 
<apex:page standardController="Account" recordSetVar="accounts">
 <apex:form >
    <apex:pageBlock title="All Accounts accorss organisations">
      <apex:pageBlockTable value="{!Accounts}" var="a">
         <apex:column >
             <apex:commandLink value="{!a.Name}" action="/{!a.id}"/>\
             
          
          </apex:column>
         <apex:column value="{!a.AccountNumber}"/>
         <apex:column value="{!a.AnnualRevenue}"/>
      </apex:pageBlockTable>
    </apex:pageBlock>
 </apex:form>
 </apex:page>



User-added image