Method Names in Lightning Component Controllers vs Apex Controllers
In the Lightning Component docs, they tell you to use the following “c.” syntax when you want to reference the Javascript controller method from the component view: <ui:button label=”Click” press=”{!c.doJSMethod}” /> also in the docs, they show you how you can call an Apex method from the Javascript controller using the exact same notation: var […]