Activity Forums Salesforce® Discussions How to make custom report on visualforce page without using standard functionality?

  • Anup

    Member
    April 14, 2016 at 8:08 am

    I wonder if you are looking for Charts rather reports. If reports then you could opt for fusion charts, google charts and there are plenty of providers in the market. If you need sample for fusion let know may be could help you.

  • Ajay Prakash

    Member
    April 14, 2016 at 8:14 am
  • shariq

    Member
    September 16, 2018 at 1:04 pm

    Hi,

    I found this online -

    apex:page standardController="Account" recordSetVar="records" id="thePage">
    <apex:form id="theForm">
    <apex:pageBlock id="thePageBlock">
    <apex:pageBlockTable value="{!records}" var="record" id="thePageBlockTable">
    <apex:column >
    <apex:outputField value="{!record.Name}" id="AccountNameDOM" />
    <apex:facet name="header">Name</apex:facet>
    </apex:column>
    <apex:column >
    <apex:outputField value="{!record.Type}" id="AccountTypeDOM" />
    <apex:facet name="header">Type</apex:facet>
    </apex:column>
    <apex:column >
    <apex:outputField value="{!record.Industry}"
    id="AccountIndustryDOM" />
    <apex:facet name="header">Industry</apex:facet>
    </apex:column>
    <apex:inlineEditSupport event="ondblClick"
    showOnEdit="saveButton,cancelButton" hideOnEdit="editButton" />
    </apex:pageBlockTable>
    <apex:pageBlockButtons >
    <apex:commandButton value="Edit" action="{!save}" id="editButton" />
    <apex:commandButton value="Save" action="{!save}" id="saveButton" />
    <apex:commandButton value="Cancel" action="{!cancel}" id="cancelButton" />
    </apex:pageBlockButtons>
    </apex:pageBlock>
    </apex:form>

    Hope this helps.

Log In to reply.

Popular Salesforce Blogs

Popular Salesforce Videos