• Salesforce User 48
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
I am following the Trailhead "Create a Lightning Component" tutorial and I have reached the part where I have build the controller (Apex) and I am attempting to set the aura:component controller.
My Developer org has a namespace prefix set due to an earlier tutorial and I think it is conflicting. When I try and set the controller:
<aura:component controller="MyContactListController"> </aura:component>
I receive the following error:
Failed to save undefined: No CONTROLLER named apex://devprefix.MyContactListController found: Source
any idea why my controller is not being accessed under the namespace prefix? In case you are wondering I am posting the contents of the apex class below:
public class MyContactListController {
    @AuraEnabled
    public static List<Contact> getContacts() {
          return [Select Id, Name, Email, Title, Phone From Contact];
     }
}
Any help would be appreciated.