in my model i have a 4 fields like VIN(vehicle Identification number), make, model,year. whenever i enter VIN number, i want to cal the apex method from javascript. for this how to cal the method from javascript. can any one give some sample code for javascrpt to cal Apex method when i enter VIN number
In order to do this, first you need to have a global class and your method should be a webservice method:
global class TestClass { <br> webservice static void testMethod(String testParameter) {<br> ..Do your stuff..<br> }<br>}
and then, you could call your apex method via javascript;
sforce.apex.execute( <br> 'TestClass',<br> 'testMethod',<br> {<br> testParameter : 'VIN'<br> }<br>);
@Hasantha Liyanage Hi this is not firing the class ,
global class SkuidTest{
webservice static ID createEmployee(String companyName) {
Employment_Experience__c emp=new Employment_Experience__c();
emp.Name=‘SKUIDTEST001’;
emp.Company_Name__c=companyName;
insert emp;
return emp.Id;
}
}
alert(‘vin check’);var redult=sforce.apex.execute(
‘SkuidTest’,
‘createEmployee’,
{
companyName : ‘VIN’
}
);
alert(redult);
Is there anything we are missing in the approach
Rajasekhar,
Please refer the link to the post by Ant Belsham : Calling apex function will explain everything for you
raj- you need to have added external resource for ajax tookit
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.