visualforce Questions
2
Solved
I am trying to generate clean XSL-FO from a VisualForce page. But the xml coming out of the VisualForce page is not valid due to the empty span tags that are being generated by nested apex:outputPa...
Reliquiae asked 15/5, 2012 at 5:17
4
Solved
I know that this is how to save a record
<apex:commandButton action="{!save}" value="Save"/>
I want a button to NOT save the current record (ie. Cancel) and navigate to the list of saved r...
Mcgrew asked 19/1, 2012 at 5:25
3
Solved
I'm have an application deployed to salesforce on the force.com platform,
which I'm trying to configure a 2 way SSL for.
I.e.
I want that for each request sent to from SF to my server, a client ce...
Haircut asked 25/1, 2015 at 9:23
3
Solved
I'm trying do develop a visualforce custom component which is an entity chooser. This custom component displays a UI which helps browsing some records. It's possible to select one record, and I'd l...
Muezzin asked 23/5, 2011 at 21:37
6
Solved
The company I work for is building a managed force.com application as an integration with the service we provide.
We are having issues working concurrently on the same set of files due to the shod...
Elegit asked 2/8, 2010 at 15:43
8
From a visualforce page, I need to retrieve our organization's salesforce instance's URL, and not the visual force URL.
For example I need https://cs1.salesforce.com instead of https://c.cs1.visua...
Woodall asked 20/2, 2012 at 22:52
2
Solved
I'm getting the following error
Uncaught TypeError: undefined is not a function bootstrap.js:29
(anonymous function) bootstrap.js:29
(anonymous function)
in my visualforce page in the developer...
Tricolor asked 23/1, 2013 at 13:15
4
Solved
I have added few custom validations using Configuration for an object. I am inserting that object record through visualforce page. I have added <apex:pageMessages/> on my visualforce page. I ...
Polyzoarium asked 23/7, 2012 at 5:41
4
Solved
I had used c:if, c:when JSTL tags in jsp. But I don't know if anything similar is available for visual force pages. just for example I am providing sample code for jsp. --
<h1>A Demo condit...
Hartzel asked 6/4, 2015 at 12:45
4
Solved
I have a custom field called Current_Address__c which is of datatype textarea.
I need to populate this field in the format below. ie a newline char after street and another newline after zip.
str...
Langan asked 10/4, 2012 at 5:22
2
Solved
In Salesforce, if I'm binding a date into a VisualForce page, how do I apply custom formatting to it?
Example:
<apex:page standardController="Contact">
<apex:pageBlock title="Test">
...
Deflate asked 25/3, 2010 at 14:56
3
Solved
i am trying to run a schedulable job i never used schedulable jobs in salesforce
here is my code
global class scheduledMerge implements Schedulable{
global void execute(SchedulableContext SC) {
...
Retard asked 17/2, 2013 at 12:47
1
I have create a RESTful service on Force.com using Apex below is my code.
@RestResource(urlMapping='/helloWorld/*')
global with sharing class RestWebservice {
@HttpGet
global static String hell...
Shabbygenteel asked 18/7, 2013 at 7:47
1
I am trying to create a widget using javascript and jquery in SalesForce, I was stuck with a ERROR: Uncaught TypeError: Cannot call method 'noConflict' of undefined
Below is my code which i am us...
Hangman asked 26/6, 2013 at 8:54
1
Solved
I have the following Trigger:
trigger send_notification on Inquery__c (after update) {
Inquery__c inquery = trigger.new[0];
String[] toAddresses = new String[] {inquery.email__c};
Messaging....
Skilken asked 11/6, 2013 at 15:18
4
Solved
I have a Visualforce page using a custom controller that is used to edit multiple records under an opportunity.
I'd like to create a custom button or link from Opportunities to this Visualforce pa...
Arjan asked 13/12, 2011 at 22:56
2
Solved
I have a data table which iterates through a custom object and generates checkboxes. On the second page, I want to determine which of these checkboxes have been selected.
In the VisualForce page:
...
Inception asked 11/2, 2013 at 23:48
1
Solved
How do I parse a jsonObject which is in a given format in Apex?
I need List<String> from the items array which contains the id attribute. What is some appropriate method?
For parsing it, I try...
Celerity asked 16/2, 2013 at 16:43
2
Solved
I have an apex function which has a void return type. I want to exit the function at a specific position. Is this possible in apex without changing return type pagereference?
Recusancy asked 13/2, 2013 at 6:11
1
Solved
I am trying to get all picklist values from a field in salesforce using REST API. Is it possible to do that? If it is then how it can be done?
Thanks,
Raj.
Lordship asked 9/1, 2013 at 9:22
2
Solved
I am trying to develop a visualforce custom component which takes an attribute from a visual force page. I need to access that attribute in controller's Constructor so that i can brings some record...
Cohune asked 19/7, 2012 at 11:12
2
Solved
I am just getting started with doing moderate web development work in Salesforce for my company, and I'm looking for some feedback/insight into the deployment process. Right now it's looking like w...
Phenomenal asked 22/6, 2012 at 13:8
2
Solved
I'm looking for a technique to execute Apex code from a custom button added to the Opportunity object in a way that protects the user against CSRF.
The current approach being used comes from the q...
Hesperidin asked 30/5, 2012 at 3:9
1
Solved
I want to display a field in a object to show just the whole number/integer value. This field has decimal values in the structure but for i need to show the integer value for this VF page only.
&...
Afore asked 11/2, 2012 at 7:36
2
Solved
How do I print the current date on Visualforce?
Stuff like Today(), System.now, doesn't work.
Haven't been able to find any documentation or stackoverflow questions regarding this subject.
Tanning asked 31/1, 2012 at 22:16
1 Next >
© 2022 - 2024 — McMap. All rights reserved.