The dynamic-binding tag has no wiki summary.
2
votes
3answers
64 views
Implementing a form in Salesforce
I am currently the Salesforce administrator of a company Enterprise account. Our accounts are made up of universities. I was asked to implement a form for trips.
The trips basic information is: Trip ...
1
vote
1answer
48 views
Need to Implement dependent lookups like dependent picklists
I have two lookups, one for country and one for state. I want that on change of country corresponding state values flows into state look up. How can I implement this? I cannot use picklist due to some ...
2
votes
1answer
36 views
What are the performance implications or other drawbacks of Dynamic VF Bindings?
I have an abstract class and a couple of descendants of that class. When I do an apex:repeat over a list of instances of the abstract class I can't access anything defined solely in the child classes ...
4
votes
2answers
80 views
<apex:relatedList list=“{!DontExistInAllOrgs__c}”/ > only solveable with Dynamic Vf components?
Does there exist a dynamic binding mechanism for the list attribute in the <apex:relatedList> element? I want to display a related list for a relationship that does not exist on all orgs where ...
1
vote
5answers
735 views
Dynamic SOQL variable binding not working for multiple records
Am building a dynamic SOQL where I am using a list of strings that represent record ids, here's an example similar to my class:
String q = '';
q += 'SELECT Id FROM' + object;
q += ' WHERE Id IN ...
1
vote
2answers
426 views
Strange behavior when passing parameters in retUrl and saveUrl
I'm using a VF page to show Contacts. I have a group of categories (related lists) which are checked or unchecked. When I perform an action on the page, e.g. View, Edit, New, I want SF to remember ...
0
votes
1answer
149 views
Hash symbol when binding variables in URL
I'm trying to populate the Contact lookup when a User creates a new related list object from the Contact page.
I am storing the Contact parameter in a Custom Setting so it can be changed when ...
2
votes
1answer
209 views
CurrencyIsoCode - Auto included in query results, except for test cases
I've implemented some functionality around MultiCurrency in a Managed package. Since it needs to be able to support non-multi-currency orgs, all references to the CurrencyIsoCode field are done using ...
2
votes
4answers
715 views
Error: Could not resolve the entity from <apex:inputField> value binding '{!variable}'
This seems like it should be very simple and I have no idea why it isn't working.
I have a VF page with a controller. The controller has the following property (yes, I made sure to save):
public ...
