function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
d.tejdeep@nicomatic.ind.tejdeep@nicomatic.in 

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.
AnupamAnupam
Hi 

You can use angular Js on the VF page with apex remoting to build this functionality.
d.tejdeep@nicomatic.ind.tejdeep@nicomatic.in
Hi 

Do you have sample code to do this?
 
AnupamAnupam
Check this link ; https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_invoking_javascript_remoting.htm