Top "Salesforce" questions

A Platform-as-a-Service development environment delivered on Salesforce.

How to make items (columns) in <apex:pageBlockTable> hyperlink?

I successfully created tables with style that salesforce provided. (like the one that highlighted on mouseover etc) But I want …

hyperlink salesforce visualforce xmltable
How do we schedule a class to run every 15 minutes in salesforce?

I am trying to schedule a class to run every 15 minutes. I know we can set in salesforce for every …

salesforce apex-code
Visualforce Page embedded in a detail page that needs to redirect to other page

I have a Visualforce page that is embedded on the detail page of Opportunities. Within the page is a command …

iframe salesforce
How to find out which checkboxes have been selected on the next page in VisualForce?

I have a data table which iterates through a custom object and generates checkboxes. On the second page, I want …

salesforce visualforce force.com
Custom Button or Link to a Visualforce page with a custom controller

I have a Visualforce page using a custom controller that is used to edit multiple records under an opportunity. I'd …

salesforce visualforce
SOQL Aggregate query: Count number of rows returned

The following is my SOQL query: select COUNT(Id) FROM Payroll_Group_Detail__c where Tax_Batch__c=null and …

salesforce apex-code soql force.com
How to call a method of a class into another class in apex

I want to use a method of a class onto another class. eg: public class controller 1{ public void method 1(){} } public …

salesforce apex-code force.com
How to redirect to a new VF page with command link and outputlink?

I have a list of Assets Name: column 2: etc A1 C1 b1 A2 c2 b2 When I click on A1, …

salesforce apex-code visualforce force.com
Set parameters with HTTP POST in Apex

I'm trying to set POST content using Apex. The example below sets the variables using GET PageReference newPage = Page.SOMEPAGE; …

salesforce force.com
How to do Http Basic access authentication from advance rest client

I am trying to do basic authentication to call a rest service. On service doc the procedure mentioned for CURL …

rest http salesforce integration