Hi ,
we are trying to call an apex class with some parameters on an event on skuid and need to get some response back from the class. For making it easier i am taking a smaple scenario
This is my class , i have to pass models field comName as argument and have to get data back to skuid page
public class SkuidTest{
public static TESTOBJ__c createEmployee(String comName) {
TESTOBJ__c tst=new TESTOBJ__c ();
tst.Name=‘SKUIDTEST001’;
tst.Company_Name__c=comNamecomID;
insert tst;
return tst;
}
}
Is there any workaround to achieve this, i have went through few approaches but couldn’t make it…
Question
How t call a apex class from skuid on an event and pass some data to the class and getting back the
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.