Skip to content

Instantly share code, notes, and snippets.

@choudharymanish8585
Last active February 17, 2019 22:33
Show Gist options
  • Save choudharymanish8585/8e7514de0d49531ac82b62373487dc2c to your computer and use it in GitHub Desktop.
Save choudharymanish8585/8e7514de0d49531ac82b62373487dc2c to your computer and use it in GitHub Desktop.
({
getCarType : function(component, helper) {
/*
* Below line of code uses inheritance to
* call server side controller from
* base component's helper method
* */
helper.callServer(component, "c.getCarTypes",
function(response){
component.set("v.carTypes", response);
});
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment