The actionfunction tag has no wiki summary.
4
votes
1answer
107 views
Problems with salesforce summer'13 Release immediate=“true”
I have written code snippet in Visualforce in using actionFunction with immediate="true", so that validations bypasses the page. but due to upgradation to summer'13 the immediate="true" doesn't work ...
3
votes
1answer
51 views
VisualForce AJAX with actionFunction acts in a strange way, any insight?
I have two picklists in a visualforce page with a controller extension:
<apex:actionFunction name="updateModelList" rerender="modelSelect"/>
....
<apex:selectList value="{!selectedBrand}" ...
3
votes
2answers
58 views
Complex If condition using regex on visualforce
I'm trying to use REGEX into AND function, but I get this error:
Error: Function REGEX may not be used in this type of formula
Code:
rendered="{!AND(condition1,REGEX(condition2 ...
2
votes
4answers
95 views
actionFunction not working in Customer Portal
I'm using actionFunction in a few Visualforce pages to call a custom save method. Although it works perfectly in regular Salesforce, it does nothing in the customer portal. If I instead call the ...
6
votes
4answers
83 views
Alternatives to using page action for user preferences
Sometimes you have to load user preferences stored in a Hierarchy custom setting when a Visualforce page loads. If the preferences exist, then retrieve them, otherwise create them and insert them.
...
2
votes
1answer
89 views
How can I pass a List of Ids as a parameter using an ActionFunction?
Here's what I have so far.
Controller
public Id[] SelectedIds {get;set;}
public void TestAction()
{
system.debug(SelectedIds);
}
Page
<apex:outputpanel id="r"></apex:outputpanel>
...
0
votes
3answers
198 views
Can we call actionFunction using outputLink?
<apex:outputLink onClick="test();">Add </apex:outputLink>
<apex:actionFunction name="test" action="{!add}" rerender="Panel"/>
Am i am doing something wrong because action function ...
4
votes
1answer
71 views
Is there a way to cancel actionFunctions?
With standard AJAX, I can cancel a request-in-progress by using xhr.abort():
var xhr = new XMLHttpRequest();
// set up my xhr
// etc...
xhr.send();
// Later: realize I don't want the response after ...
