Visualforce is Salesforce.com's HTML template technology, allowing dynamic creation of web pages (as well as other files) utilising Apex logic and SOQL queries to replace merge fields with content.
0
votes
1answer
13 views
Custom Field Labels - Field Sets VisualForce
I have a field set on a Visual Force Page. I want to customize the field labels displayed to the user.
Currently, my custom contact field is birthdate, but it'd be better Date of Birth.
Here is ...
0
votes
1answer
15 views
Salesforce - Hiding visualforce form items based on organization
I have a custom viusalforce page as part of a package that i'm developing. The package will be installed on a number of different Salesforce organizations. I require to hide certain parts of the ...
0
votes
1answer
24 views
How to find if an apex:inputField is disabled
From a VisualForce controller, how can I find if a dependent pick-list inputfield is disabled?
There does not seem to be an accessible 'disabled' property for the field. I am creating validation to ...
0
votes
0answers
24 views
visualforce email template returns blank/ no rows for assignment to SObject
So we have a workflow rule that indicates when a Case is submitted with certain criteria, a task is created for the appropriate team member. These team members do NOT have access to cases due to only ...
0
votes
1answer
23 views
Create a custom Case phone field that is a copy of the Contact.Phone field
I want to add a custom field to the Case object that is searchable by SOSL "FIND ... IN PHONE FIELDS" (ie it must be of type PHONE), and contains a copy of the Phone field in the Contact that is ...
0
votes
2answers
41 views
javascript to check string in this format
i want javascript code to check whether my input text is in specific format as AS0301-12345
<apex:inputText id="searchText" value="{!searchText}" onmousemove="checkingstring(this)"/>
...
1
vote
2answers
51 views
How do you define a string in JavaScript that could contain any character?
Even though I'm using a Salesforce variable in my JavaScript, it is not necessary to know Salesforce to answer my question. There's a password field I want to access. I can do this by using the ...
1
vote
0answers
11 views
Lightbox is not closing in some browser apex
I am using lightbox in my page. While closing light box it is closing fine in all browser.. But it is not properly closing in Opera..
My light box component code -
<apex:component >
...
0
votes
0answers
30 views
Uploading Multiple Files in Salesforce through Visualforce
I would like to upload multiple files in Salesforce using visualforce.
I can upload one file at a time.
But my requirement is, i want to display only one "add a file" button in visualforce page, when ...
0
votes
1answer
13 views
Dynamically assign rowClasses attribute on <apex:dataTable> component
I have a VisualForce page that renders into a PDF file with the following component declaration:
<apex:dataTable value="{!someSObjectList}" var="SObj"
rowClasses="{!IF( MOD( pos, 2 ) == 0, ...
0
votes
1answer
32 views
How to wrap apex:columns in a div to use in slideToggle()
I am trying to have a jquery slideToggle() function bound to a row of data in an apex:pageBlockTable.
I am displaying some information in the table and want that if someone clicks on any row, some ...
0
votes
0answers
21 views
How to display a byte stream on visualforce page?
I have few documents in jackrabbit content repository which I want to display in the browser on the click of a link on visualforce page.
I have a web-service to access those documents and ...
0
votes
1answer
7 views
Query to search list of sObjects in the Organization
I am trying to build a Visualforce Page where i want to display all the sObjects in the system with their related data counts in a tabular format.
ObjectName ObjectLabel RecordCount
Can i know how ...
0
votes
1answer
24 views
Visualforce Page navigation issue
I have pretty long Visual force page in my application i have to requirement to save it automatically for every 60 sec seconds.So whenever i save the page the cursor goes to the top of the page ...
0
votes
0answers
32 views
Render Salesforce Document Object Instance Body on Visualforce Page
I have a PDF file stored in Documents in Salesforce. I need to get the Document from the Document object and render it as a PDF visualforce page. When I get the body of the docuemnt it is the form ...
1
vote
1answer
28 views
How to pass values from multiple selectlists in same VF containing similar list data to Apex extension using a single variable/array
I am an amateur developer looking for a unique solution that Google doesn't have an answer to.
I need to create a time-table for a class. There are 6 hours with 6 teachers assigned to each subject. ...
0
votes
1answer
70 views
Getting Specific rows in Datatable using JavaScript in Salesforce
I am working with visualforce pages. I am using datatable in page and i have used a checkbox in each row, now i want to get only those rows whose checkbox values is true, the code is given below.
...
0
votes
2answers
49 views
Invalid field Email for SObject AggregateResult in VisualForce
I want to display the AggregateResult on my Visualforce page but it is generating the following error " Invalid field Email for SObject AggregateResult"
Below is my code:
public with sharing class ...
1
vote
1answer
38 views
DataTables in VisualForce Page, Setting swfPath as Static Resource
I have been working with the DataTables library in VisualForce and have everything working except for the export features. I followed the sample initialization on the DataTables website, but am ...
0
votes
1answer
43 views
Can I set CSS to put a whole <p> on a single page (generated content in SalesForce)?
I'm working in SalesForce. I have a page that generates a PDF based on user specified paramaters. The trouble is that most sometimes the <p> run between pages and it looks terrible.
Is there a ...
0
votes
1answer
29 views
retURL in URLFOR not redirectin​g correctly
I have a VF page that is embedded inline on a custom object page layout section. In the VF page, I used a command button to redirect to another custom object using the URLFOR New Action.
...
0
votes
2answers
46 views
Visualforce Apex Trigger updating wrong records
I cant figure out why this trigger is sometimes updating records that dont match the criteria. The idea is that when an account goes from 'on-hold' to an active service, any cancelled assignments are ...
0
votes
0answers
38 views
How to make Chart area clickable in IE8
I have created a google chart. Now I want to call a javascript function when the user clicks anywhere on the chart area. I mean the JS function should fire when the user clicks on the div where the ...
0
votes
0answers
65 views
Salesforrce: JavaScript Remoting “Uncaught ReferenceError: Visualforce is not defined”
I'm using JavaScript Remoting in my Force.com site. This works well apart from a scenario I have noted where when I click on an apex:commandLink or apex:commandButton in a component which then opens ...
1
vote
2answers
65 views
Declaring new variables on the fly?
Has anyone found a way to declare variables on the fly?
I have some variables that can be limitless...
val1
val2
val3
val4...
Is there a way to create these on the fly, something like...
...
0
votes
1answer
40 views
Grab textbox salesforce ID and display somewhere else on same page
I have a apex:textbox which renders on a visualforce page with a SF ID.
I need to grab the SF ID on the same page load and place into a link.
eg: I need this:
<input ...
0
votes
1answer
47 views
Populating SelectList with sobject
I am trying to create a class that will populate the a multi selectlist depending on what URL parameters are passed in.
Im having trouble. The slectlist never renders, however, looking through the ...
0
votes
1answer
58 views
How do I display an input field for Users, in a visualforce page?
I simply want to display an input field, that will let me capture a user, so I can filter a list from a custom object by owner. CustomObject__c.OwnerId is not writable, so when I bind it to an input ...
-6
votes
0answers
12 views
Display horizontal values in a datatable [closed]
1.Need to display values in a horizantal style in visualforce datatable?
0
votes
1answer
56 views
How to render VisualForce page inputCheckBox in custom controlller accourding to user profile?
I have a VisualForce page that has a custom controller and i want users to see components like inputCheckBox only if they have the accessible option in their profile.
I've read that when using a ...
0
votes
1answer
53 views
Twitter Bootstrap is not working with Visualforce
i am trying to use Bootstrap with Visualforce .i created appropriate static resources but its not showing twitter bootstrap behaviour .can any one please tell why ?? here is the procedure how i am ...
1
vote
1answer
86 views
Removing None Option in PickList visualforce apex
i have created an object with name PS_Detail__c .in this custom object i created a custom field .in this picklist i defined two values Dollar ,Unit.
when i go to P/S Detail Tab for creating a new ...
0
votes
2answers
169 views
Salesforce/Apex - Saving values of dynamic number of checkboxes
I currently have a Visualforce page embedded on the contact record that displays all active campaigns with a chexckbox indicating if the contact is a member of the campaign (if checked then the ...
0
votes
1answer
46 views
how to store single values in salesforce
I am fairly new to salesforce so forgive me if this question has asked before - I have thusfar not been able to figure out what seems like a simple thing to do.
I am working on an app and I would ...
0
votes
1answer
114 views
Making a Tree-Like Structure in VisualForce/Apex from a Self-Referencing Table/sObject
My Controllers are all custom.
I have an object/table with a field that references the same object and signifies the parent object.
There are many rows in the object/table.
I wish to dump all of ...
0
votes
1answer
111 views
Salesforce: Can a Javascript Remoting Static Function Access ApexPages.CurrentPage Functions?
I was wondering, In a RemoteAction function in an apex class can or should this be able to access the current force.com site page? I would like to access and write to cookie parameters from within my ...
0
votes
0answers
32 views
google chart shows result as null in remote action function in IE8
Hi I am displaying a chart in my Visualforcepage using remoteaction function. Below is my code
<apex:includeScript value="https://www.google.com/jsapi" />
<div ...
0
votes
1answer
24 views
get the value of an object
First, I'm just a starter and now writing a visual force page and apex
Basically, I have objects A and B, A is master and B is detail, every time creating a B I will set the default balance value as ...
0
votes
2answers
114 views
Salesforce: URL Rewriter & JScript Remoting: Exception parsing json response: 'Unexpected token <'. Logged in?
I am getting an error when I use JavaScript remoting and have my URLReWriter turned on on my Force.com SIte. The error does not occur when using JavaScript Remoting with the URL ReWriter turned off.
...
0
votes
1answer
33 views
make a select object field in salsforce
First, I'm just a beginner in salesforce and started to learn visualforce page using apex,
basically I have the default object "people", and many records in it
now is to write a "payment" visual ...
0
votes
0answers
57 views
google visualization bar chart with multiple data points
I have the below code for normal charts.But i need Google visualization chart.What changes are required to the below code to make it as Google visualization charts please suggest me.My position is ...
0
votes
1answer
77 views
Three Layer CSS Menu within Salesforce VF page
I am building a VF page for the purpose of easily navigating custom reports. I am just starting to learn code and could use an extra set of eyes to help identify my errors.
The two issues being:
...
0
votes
0answers
50 views
Visual Force Email Template - include Thread ID and Case Owner Email Signature
I need to use a Visual Force email Template when cases are closed so I can customize the Reply To Field.
How do I include the Case thread ID?
How do I include the Case Owner's Email Signature?
...
1
vote
2answers
108 views
How can I pass variables state from one page to another, if both pages use the same controller, but the second page uses a controller extension?
I have a page that needs to pass data to another page. They both use the same controller, but the second page has its own controller extension. When the first page passes data to the second page, the ...
0
votes
1answer
41 views
Visualization chart not being displayed
I have the below code . I am trying to create google visualizationcolumn chart with each bar contain multiple datapoints . But Visualization chart not being displayed. I am getting error like ...
0
votes
0answers
38 views
Binding StanderdSetController to modified list of record gives error?
I am having a pagination through StanderdSetController in which I need to be able to select multiple record by check-box(I used wrapper class).
But when I am clicking on Next button which calls the ...
2
votes
1answer
209 views
jquery output value pass to visualforce
How to pass jquery value result into visualforce code for example:
My jquery code is
$j('[id$=submit]').on("click", function(){
var output = [], $jselects = $j(".container .row .span6 ...
0
votes
1answer
32 views
Repeat a form and passing it custom objects
In my VF page I have a form which uses map of a hardcoded custom object for some operations (Schema.Sobjecttype.object1_c.fields.getMap()).
Now I want to repeat this same form three times in the same ...
0
votes
2answers
37 views
Update Opportunity with Force.com Site From
I don't know why, but my force.com site is not updating my opportunity when I go to it and try and update a "survey" we send.
The data populates on the page correctly just doesn't get sent to the ...
0
votes
0answers
82 views
How to hide graph/chart container div after chart load in Google chart?
I have two charts in a same page, i want to load both charts when page gets loaded but second chart should be hidden. on change of select option second chart will be loaded and first will be hidden.
...




