Activity › Forums › Salesforce® Discussions › How to make custom report on visualforce page without using standard functionality?
-
How to make custom report on visualforce page without using standard functionality?
Posted by Satyakam on April 14, 2016 at 7:57 AMHow to make custom report on visualforce page without using standard functionality…? Can anyone suggest me..
shariq replied 7 years, 8 months ago 4 Members · 3 Replies -
3 Replies
-
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.
- [adinserter block='9']
-
You should follow the following link
http://salesforce.stackexchange.com/questions/48265/report-build-using-the-vf-page
-
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.