You need to sign in to do that
Don't have an account?

i want to pass param using input from user it should be immediate ?
<td> <apex:inputfield value="{!qli.Batches_No__c}" style="width:25px;"> <apex:actionSupport event="onchange" rerender="pb,op" /> </apex:inputfield> <apex:outputPanel id="op" > <apex:outputField value="{!qli.Batches_No__c}" /> </apex:outputPanel> </td> <td> <apex:commandlink Value="Add Batch" action="{!addBatch}" rerender="pb" styleclass="btn" style="text-decoration:None;padding-top:5px;" > <apex:param assignTo="{!qliRowNum}" value="{!rowNum}" name="qliRowNum" /> <apex:param assignto="{!Batchesnumber1}" value="{!qli.Batches_No__c}" name="Batchesnumber1"/> </apex:commandlink>
It takes some time to load after changing the value .I want immediate action after giving input .when i click the button it has to send the param values.
You can use angular Js on the VF page with apex remoting to build this functionality.
Do you have sample code to do this?