Category Archives: Visualforce Pages

Apex Action Poller in Visualforce page salesforce

What is actionpoller? When we want, the same action to be repeated we use actionpoller… Actionpoller acts as a timer in visualforce page. It is used to send an AJAX request to the server depending on the time interval that we specify in interval attribute (time interval has to be specified or else it defaults to 60 seconds).Each request can… Read More »

How to Delete Records of an sObject using PageBlockTable in Visualforce page

Hi, In this scenario we have shown how to delete the records using pageblocktable in visualforce page. Here we used ‘apex:param’ for transmitting individual record ids from vf to apex class…. we used custom controller to perform delete action, and pageBlockTable to display records and command link to delete individual records. Apex Controller Vf Page… Read More »