Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
<apex:page controller="Controller"> <apex:form> <apex:actionFunction action="{!createFruitList}" name="generateFruits" reRender="selFruits"/> <br/> Select the Alphabet: <apex:selectList id="selAlphabets" value=" {!SelectedAlphabet}"size="1"onchange="generateFruits()"> <apex:selectOptions value="{!Alphabets}"> </apex:selectOptions> </apex:selectList> <br/> Select the Fruit: <apex:selectList id="selFruits" size="1"> <apex:selectOptions value="{!Fruits}"> </apex:selectOptions> </apex:selectList> </apex:form> </apex:page>
you can use "Action Function" insted of @Remote action
Here is the example how you can use it.... If this one helps you please mark it best answer that will helps outher.