
Table of Contents
What is recordsetvar attribute in Salesforce?
The recordSetVar attribute indicates that the page uses a list controller and the variable name of the record collection. This variable can be used to access data in the record collection. Above displays all account with number.
What is recordsetvar?
What is RecordSetVar? What is RecordSetVar?? How can i use this As all550 explained Recordsetvar is used to retun the List of sObject records. It is the in built salesforce functionality that comes with standard controller.
What is the use of list variable in Salesforce?
This variable can be used to access data in the record collection. Click to see full answer. Then, what is List controller Salesforce? Standard list controllers allow you to create Visualforce pages that can display or act on a set of records.
What is the use of data attribute in Salesforce Salesforce?
Using that attribute tells your page that it is using a particular kind of data. Either one of the standard Salesforce objects like Account or Contact, or perhaps your own custom entity, Progress_Report__c, for instance. The behavior of the page will be to instantiate an Apex class called StandardController.

What is record set VAR in Salesforce?
Hello Vijay. As all550 explained Recordsetvar is used to retun the List of sObject records. Little more in detail: It is the in built salesforce functionality that comes with standard controller. It will display the salesforce pre-defined options for the selectoptions by the variable “listviewoptions”.
What is standard set controller in Salesforce?
Standard list controllers allow you to create Visualforce pages that can display or act on a set of records. Examples of existing Salesforce pages that work with a set of records include list pages, related lists, and mass action pages.
How do I use Apex repeat?
apex:repeat is an iteration component that allows you to output the contents of a collection according to a structure that you specify….
How do I associate a standard controller with Visualforce page?
To associate a standard controller with a Visualforce page, use the standardController attribute on the
What is difference between standard controller and standard controller?
StandardController (documentation) encapsulates just a single Sobject (e.g. Account, Opportunity). ApexPages. StandardSetController (documentation) contains a list of records (one or more), and has additional functions to facilitate pagination (moving between pages) and updating a number of records at once.
What is the difference between standard controller and standard list controller?
Standard controller encapsulates just a single Sobject (e.g. Account, Opportunity). Standard list controller contains a list of records (one or more), and has additional functions to facilicate paging (moving between pages) and updating a number of records at once.
What is Pageblock in Salesforce?
An area of a page that uses styling similar to the appearance of a Salesforce detail page, but without any default content. This component supports HTML pass-through attributes using the “html-” prefix. Pass-through attributes are attached to the generated container
What is Apex facet?
A placeholder for content that’s rendered in a specific part of the parent component, such as the header or footer of an
What is Apex Param?
How many records can we display in Visualforce page?
It allows the developer to configure list view to display up to 100 records at a time, but by default it returns 20 records on the page.
How many types of controllers are there in Salesforce?
There are basically two types of Controller in Visualforce page.
Can we use both standard controller and custom controller together?
We can use Stnadard controller/ Custom Controller and extensions at a time. But we cannot use Standard controller & Custom controller at a time.