2014 archive

Show error message in Visualforce Page

Show error message in Visualforce Page using ApexPages.addmessage apex error message Sometime we need to show error message on Visualforce page. We can implement this requirement by creating new instance of ApexPages.message and then adding message to Apexpages using ApexPages.addmessage. Then displaying these messages in visualforce page. We can add 5 different types of message …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/show-error-message-visualforce-page/

Export to Excel using VisualForce Page

Export to Excel using VisualForce Page By simply modifying the ContentType attribute on the <apex:page> tag, your Visualforce page code will automatically generate an Excel document. For example, the following code will create a table of Contact data for a given Account. After # in the contentType attribute value, it is the name of the excel file that will …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/export-excel-using-visualforce-page/

Dynamic SOQL query select all fields in Salesforce

Dynamic SOQL query Salesforce soql select all Dynamic SOQL query Salesforce for soql select all. SOQL is Salesforce Object Query Language for querying data in the Force.com platform. It is very much similar to SQL. But in SOQL, we can not query all fields from object. This statement is not allowed in SOQL: select * …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/dynamic-soql-query-fetch-fields-object-salesforce/

Wrapper Class in Apex Salesforce

Wrapper class in Apex Salesforce Wrapper Class in Apex Salesforce : A wrapper or container class is a class, a data structure, or an abstract data type which contains different objects or collection of objects as its members. A wrapper class is a custom object defined by programmer wherein he defines the wrapper class properties. …

Continue reading

Permanent link to this article: https://www.sfdcpoint.com/salesforce/wrapper-class-in-apex/

Select all checkbox using javascript in visualforce page

Select all checkbox using javascript in visualforce page Javascript can be used in visualforce pages to select all checkboxes in visualforce table. This example uses javascript to implement this functionality. Click for demo Visualforce Page: Apex Class Code:

Permanent link to this article: https://www.sfdcpoint.com/salesforce/select-all-checkbox-using-javascript-in-visualforce-page/