How to use @AuraEnabled base class method in Lightning Component?@AuraEnabled Support for Apex Class Return Types?Virtual Class Properties Not Returned from Apex to Lightning ComponentCan an extending component find by aura:id in its base component?Spring 18 breaks overridden apex methods in lightning componentsSelector Patterns for Lightning ComponentExtending Lightning Components not workingTest class for method with API call and return type String@AuraEnabled Method will execute in synchronous or asynchronous?How to register and fire app event from base component in LightningCreating a lightning compatible button that runs an apex method

Adjacent DEM color matching in QGIS

Understanding trademark infringements in a world where many dictionary words are trademarks?

What to use instead of cling film to wrap pastry

Copy previous line to current line from text file

Should I mention being denied entry to UK due to a confusion in my Visa and Ticket bookings?

Is the set of non invertible matrices simply connected? What are their homotopy and homology groups?

Frequency of specific viral sequence in .BAM or .fastq

How to increase the size of the cursor in Lubuntu 19.04?

IP addresses from public IP block in my LAN

What does this wavy downward arrow preceding a piano chord mean?

Manager is threatening to grade me poorly if I don't complete the project

Shutter speed -vs- effective image stabilisation

What does "Managed by Windows" do in the Power options for network connection?

Appropriate certificate to ask for a fibre installation (ANSI/TIA-568.3-D?)

Should homeowners insurance cover the cost of the home?

Find the cheapest shipping option based on item weight

Are pressure-treated posts that have been submerged for a few days ruined?

Can I use a fetch land to shuffle my deck while the opponent has Ashiok, Dream Render in play?

Upside-Down Pyramid Addition...REVERSED!

What does 'made on' mean here?

How can internet speed be 10 times slower without a router than when using a router?

Are there any of the Children of the Forest left, or are they extinct?

Why did the Apollo 13 crew extend the LM landing gear?

What exactly are the `size issues' preventing formation of presheaves being a left adjoint to some forgetful functor?



How to use @AuraEnabled base class method in Lightning Component?


@AuraEnabled Support for Apex Class Return Types?Virtual Class Properties Not Returned from Apex to Lightning ComponentCan an extending component find by aura:id in its base component?Spring 18 breaks overridden apex methods in lightning componentsSelector Patterns for Lightning ComponentExtending Lightning Components not workingTest class for method with API call and return type String@AuraEnabled Method will execute in synchronous or asynchronous?How to register and fire app event from base component in LightningCreating a lightning compatible button that runs an apex method






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








8















We are consolidating our common methods into an Abstract controller base class. Here's an example:



public abstract class CommunityControllerBase 

/*
Returns a select option list of Gender for use with lightning:combobox.
See: https://help.salesforce.com/articleView?id=000212327&type=1
*/
@AuraEnabled
public static List<SelectOption> getGenderPicklistEntries()
List<SelectOption> options = new List<SelectOption>();
Schema.DescribeFieldResult fieldResult = Contact.Gender__c.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
for (Schema.PicklistEntry f: ple)
options.add(new SelectOption(f.getValue(), f.getLabel()));

return options;




We are extending the class and calling it from a Lightning Component component:



public with sharing AwesomeController extends CommunityControllerBase 
// some fancy code ...



I can use anonymous Apex to call the base class method getGenderPicklistEntries and get an appropriate result via the extending class:



AwesomeController.getGenderPicklistEntries();


However, when we call the getGenderPicklistEntries method from Lightning, we get an error:



Unable to find action 'getGenderPicklistEntries' on the controller of...


If I copy the method getGenderPicklistEntries into the extending class and comment it out on the base class, it works (finds the method and pulls the list of genders).



Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?










share|improve this question

















  • 3





    In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

    – sfdcfox
    Apr 24 at 21:40

















8















We are consolidating our common methods into an Abstract controller base class. Here's an example:



public abstract class CommunityControllerBase 

/*
Returns a select option list of Gender for use with lightning:combobox.
See: https://help.salesforce.com/articleView?id=000212327&type=1
*/
@AuraEnabled
public static List<SelectOption> getGenderPicklistEntries()
List<SelectOption> options = new List<SelectOption>();
Schema.DescribeFieldResult fieldResult = Contact.Gender__c.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
for (Schema.PicklistEntry f: ple)
options.add(new SelectOption(f.getValue(), f.getLabel()));

return options;




We are extending the class and calling it from a Lightning Component component:



public with sharing AwesomeController extends CommunityControllerBase 
// some fancy code ...



I can use anonymous Apex to call the base class method getGenderPicklistEntries and get an appropriate result via the extending class:



AwesomeController.getGenderPicklistEntries();


However, when we call the getGenderPicklistEntries method from Lightning, we get an error:



Unable to find action 'getGenderPicklistEntries' on the controller of...


If I copy the method getGenderPicklistEntries into the extending class and comment it out on the base class, it works (finds the method and pulls the list of genders).



Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?










share|improve this question

















  • 3





    In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

    – sfdcfox
    Apr 24 at 21:40













8












8








8








We are consolidating our common methods into an Abstract controller base class. Here's an example:



public abstract class CommunityControllerBase 

/*
Returns a select option list of Gender for use with lightning:combobox.
See: https://help.salesforce.com/articleView?id=000212327&type=1
*/
@AuraEnabled
public static List<SelectOption> getGenderPicklistEntries()
List<SelectOption> options = new List<SelectOption>();
Schema.DescribeFieldResult fieldResult = Contact.Gender__c.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
for (Schema.PicklistEntry f: ple)
options.add(new SelectOption(f.getValue(), f.getLabel()));

return options;




We are extending the class and calling it from a Lightning Component component:



public with sharing AwesomeController extends CommunityControllerBase 
// some fancy code ...



I can use anonymous Apex to call the base class method getGenderPicklistEntries and get an appropriate result via the extending class:



AwesomeController.getGenderPicklistEntries();


However, when we call the getGenderPicklistEntries method from Lightning, we get an error:



Unable to find action 'getGenderPicklistEntries' on the controller of...


If I copy the method getGenderPicklistEntries into the extending class and comment it out on the base class, it works (finds the method and pulls the list of genders).



Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?










share|improve this question














We are consolidating our common methods into an Abstract controller base class. Here's an example:



public abstract class CommunityControllerBase 

/*
Returns a select option list of Gender for use with lightning:combobox.
See: https://help.salesforce.com/articleView?id=000212327&type=1
*/
@AuraEnabled
public static List<SelectOption> getGenderPicklistEntries()
List<SelectOption> options = new List<SelectOption>();
Schema.DescribeFieldResult fieldResult = Contact.Gender__c.getDescribe();
List<Schema.PicklistEntry> ple = fieldResult.getPicklistValues();
for (Schema.PicklistEntry f: ple)
options.add(new SelectOption(f.getValue(), f.getLabel()));

return options;




We are extending the class and calling it from a Lightning Component component:



public with sharing AwesomeController extends CommunityControllerBase 
// some fancy code ...



I can use anonymous Apex to call the base class method getGenderPicklistEntries and get an appropriate result via the extending class:



AwesomeController.getGenderPicklistEntries();


However, when we call the getGenderPicklistEntries method from Lightning, we get an error:



Unable to find action 'getGenderPicklistEntries' on the controller of...


If I copy the method getGenderPicklistEntries into the extending class and comment it out on the base class, it works (finds the method and pulls the list of genders).



Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?







apex lightning-aura-components abstract






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 24 at 21:03









Swisher SweetSwisher Sweet

2,04511445




2,04511445







  • 3





    In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

    – sfdcfox
    Apr 24 at 21:40












  • 3





    In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

    – sfdcfox
    Apr 24 at 21:40







3




3





In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

– sfdcfox
Apr 24 at 21:40





In addition to Jayant's answer, LWC answers this problem by allowing you to import methods from multiple classes at once, eliminating the need for "extends", since you can mixin any methods you'd like.

– sfdcfox
Apr 24 at 21:40










2 Answers
2






active

oldest

votes


















7















Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?




Going through the documentation, it seems that all @AuraEnabled methods used from JS Controller in an Aura Component need to be explicitly annotated in the Class (emphasis mine).




Only methods that you have explicitly annotated with @AuraEnabled are exposed.




While Static methods defined in parent class can be invoked from a child class even if not defined in the child itself, but in case of Lighting Aura/Web Components, even though it's not very well documented for scenarios like inheritance, based on what documentation says, you will need to ensure that the annotated method is explicitly available in the Controller class. So if in your component you have a AwesomeController declared as a Controller, the method you are trying to invoke should be available in that class itself.



In your scenario, if you want to refactor the code, you can achieve it by using something as below. You don't follow inheritance here but at least this way you will be still able to consolidate your common code at one place and be able to utilize it.



public class AwesomeController 

@AuraEnabled
public static List<SelectOption> getGenderPicklistEntries()
return CommunityControllerBase.getGenderPicklistEntries()







share|improve this answer




















  • 1





    You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

    – Charles T
    Apr 24 at 21:41






  • 1





    @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

    – Brian Miller
    Apr 24 at 22:27






  • 1





    And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

    – javanoob
    Apr 25 at 4:40







  • 1





    @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

    – Jayant Das
    Apr 25 at 11:24


















0














The thing that we discovered that worked pretty well is this sorta hybrid approach - use modular services when needed ad-hoc, but then for more common areas of application, abstract services into one piece. Have a look into this repo:



https://github.com/metacursion/sfdc-lax-benedict



I kept meaning to describe this pattern for a while and only got to do it in last 30 minutes as I saw this question. Let me know if you need more help.






share|improve this answer























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "459"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f259988%2fhow-to-use-auraenabled-base-class-method-in-lightning-component%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    7















    Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?




    Going through the documentation, it seems that all @AuraEnabled methods used from JS Controller in an Aura Component need to be explicitly annotated in the Class (emphasis mine).




    Only methods that you have explicitly annotated with @AuraEnabled are exposed.




    While Static methods defined in parent class can be invoked from a child class even if not defined in the child itself, but in case of Lighting Aura/Web Components, even though it's not very well documented for scenarios like inheritance, based on what documentation says, you will need to ensure that the annotated method is explicitly available in the Controller class. So if in your component you have a AwesomeController declared as a Controller, the method you are trying to invoke should be available in that class itself.



    In your scenario, if you want to refactor the code, you can achieve it by using something as below. You don't follow inheritance here but at least this way you will be still able to consolidate your common code at one place and be able to utilize it.



    public class AwesomeController 

    @AuraEnabled
    public static List<SelectOption> getGenderPicklistEntries()
    return CommunityControllerBase.getGenderPicklistEntries()







    share|improve this answer




















    • 1





      You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

      – Charles T
      Apr 24 at 21:41






    • 1





      @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

      – Brian Miller
      Apr 24 at 22:27






    • 1





      And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

      – javanoob
      Apr 25 at 4:40







    • 1





      @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

      – Jayant Das
      Apr 25 at 11:24















    7















    Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?




    Going through the documentation, it seems that all @AuraEnabled methods used from JS Controller in an Aura Component need to be explicitly annotated in the Class (emphasis mine).




    Only methods that you have explicitly annotated with @AuraEnabled are exposed.




    While Static methods defined in parent class can be invoked from a child class even if not defined in the child itself, but in case of Lighting Aura/Web Components, even though it's not very well documented for scenarios like inheritance, based on what documentation says, you will need to ensure that the annotated method is explicitly available in the Controller class. So if in your component you have a AwesomeController declared as a Controller, the method you are trying to invoke should be available in that class itself.



    In your scenario, if you want to refactor the code, you can achieve it by using something as below. You don't follow inheritance here but at least this way you will be still able to consolidate your common code at one place and be able to utilize it.



    public class AwesomeController 

    @AuraEnabled
    public static List<SelectOption> getGenderPicklistEntries()
    return CommunityControllerBase.getGenderPicklistEntries()







    share|improve this answer




















    • 1





      You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

      – Charles T
      Apr 24 at 21:41






    • 1





      @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

      – Brian Miller
      Apr 24 at 22:27






    • 1





      And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

      – javanoob
      Apr 25 at 4:40







    • 1





      @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

      – Jayant Das
      Apr 25 at 11:24













    7












    7








    7








    Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?




    Going through the documentation, it seems that all @AuraEnabled methods used from JS Controller in an Aura Component need to be explicitly annotated in the Class (emphasis mine).




    Only methods that you have explicitly annotated with @AuraEnabled are exposed.




    While Static methods defined in parent class can be invoked from a child class even if not defined in the child itself, but in case of Lighting Aura/Web Components, even though it's not very well documented for scenarios like inheritance, based on what documentation says, you will need to ensure that the annotated method is explicitly available in the Controller class. So if in your component you have a AwesomeController declared as a Controller, the method you are trying to invoke should be available in that class itself.



    In your scenario, if you want to refactor the code, you can achieve it by using something as below. You don't follow inheritance here but at least this way you will be still able to consolidate your common code at one place and be able to utilize it.



    public class AwesomeController 

    @AuraEnabled
    public static List<SelectOption> getGenderPicklistEntries()
    return CommunityControllerBase.getGenderPicklistEntries()







    share|improve this answer
















    Why can't our Lightning component see our base method in the base class, but can see it when it's copied in the extending class?




    Going through the documentation, it seems that all @AuraEnabled methods used from JS Controller in an Aura Component need to be explicitly annotated in the Class (emphasis mine).




    Only methods that you have explicitly annotated with @AuraEnabled are exposed.




    While Static methods defined in parent class can be invoked from a child class even if not defined in the child itself, but in case of Lighting Aura/Web Components, even though it's not very well documented for scenarios like inheritance, based on what documentation says, you will need to ensure that the annotated method is explicitly available in the Controller class. So if in your component you have a AwesomeController declared as a Controller, the method you are trying to invoke should be available in that class itself.



    In your scenario, if you want to refactor the code, you can achieve it by using something as below. You don't follow inheritance here but at least this way you will be still able to consolidate your common code at one place and be able to utilize it.



    public class AwesomeController 

    @AuraEnabled
    public static List<SelectOption> getGenderPicklistEntries()
    return CommunityControllerBase.getGenderPicklistEntries()








    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Apr 25 at 11:23

























    answered Apr 24 at 21:34









    Jayant DasJayant Das

    19.7k21331




    19.7k21331







    • 1





      You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

      – Charles T
      Apr 24 at 21:41






    • 1





      @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

      – Brian Miller
      Apr 24 at 22:27






    • 1





      And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

      – javanoob
      Apr 25 at 4:40







    • 1





      @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

      – Jayant Das
      Apr 25 at 11:24












    • 1





      You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

      – Charles T
      Apr 24 at 21:41






    • 1





      @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

      – Brian Miller
      Apr 24 at 22:27






    • 1





      And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

      – javanoob
      Apr 25 at 4:40







    • 1





      @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

      – Jayant Das
      Apr 25 at 11:24







    1




    1





    You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

    – Charles T
    Apr 24 at 21:41





    You could add a method with @AuraEnabled and the same signature, that simply calls the same method on the parent class. That's probably the best you're going to get. The super keyword won't even work in a static context.

    – Charles T
    Apr 24 at 21:41




    1




    1





    @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

    – Brian Miller
    Apr 24 at 22:27





    @JayantDas This question has been bothering me for a couple years and this answer puts my mind to ease. Thank you!

    – Brian Miller
    Apr 24 at 22:27




    1




    1





    And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

    – javanoob
    Apr 25 at 4:40






    And that static methods defined in a parent class are not extended or inherited in a subclass, but they are hidden -- methods are hidden only if subclass defines a method with same signature. In this case, subclass did not define method with same signature but still hidden? Also, if it is hidden, how is it working in Anonymous execution window?

    – javanoob
    Apr 25 at 4:40





    1




    1





    @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

    – Jayant Das
    Apr 25 at 11:24





    @javanoob You were right, I think my answer was a bit confusing too. I have updated it to reflect what exactly is going here.

    – Jayant Das
    Apr 25 at 11:24













    0














    The thing that we discovered that worked pretty well is this sorta hybrid approach - use modular services when needed ad-hoc, but then for more common areas of application, abstract services into one piece. Have a look into this repo:



    https://github.com/metacursion/sfdc-lax-benedict



    I kept meaning to describe this pattern for a while and only got to do it in last 30 minutes as I saw this question. Let me know if you need more help.






    share|improve this answer



























      0














      The thing that we discovered that worked pretty well is this sorta hybrid approach - use modular services when needed ad-hoc, but then for more common areas of application, abstract services into one piece. Have a look into this repo:



      https://github.com/metacursion/sfdc-lax-benedict



      I kept meaning to describe this pattern for a while and only got to do it in last 30 minutes as I saw this question. Let me know if you need more help.






      share|improve this answer

























        0












        0








        0







        The thing that we discovered that worked pretty well is this sorta hybrid approach - use modular services when needed ad-hoc, but then for more common areas of application, abstract services into one piece. Have a look into this repo:



        https://github.com/metacursion/sfdc-lax-benedict



        I kept meaning to describe this pattern for a while and only got to do it in last 30 minutes as I saw this question. Let me know if you need more help.






        share|improve this answer













        The thing that we discovered that worked pretty well is this sorta hybrid approach - use modular services when needed ad-hoc, but then for more common areas of application, abstract services into one piece. Have a look into this repo:



        https://github.com/metacursion/sfdc-lax-benedict



        I kept meaning to describe this pattern for a while and only got to do it in last 30 minutes as I saw this question. Let me know if you need more help.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 25 at 6:01









        dzhdzh

        2,34432158




        2,34432158



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Salesforce Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f259988%2fhow-to-use-auraenabled-base-class-method-in-lightning-component%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

            What if the end-user didn't have the required library?What is setup.py?What is a clean, pythonic way to have multiple constructors in Python?What does Ruby have that Python doesn't, and vice versa?What is the reason for having '//' in Python?How do I create a namespace package in Python?How to package shared objects that python modules depend on?setuptools vs. distutils: why is distutils still a thing?Navigation in Windows 10 vs code not going to virtualenv library when the same library is installed at user levelPython create package for local usePackaging a project that uses multiple python versionsWhy is permission denied on pip install except for when “--user” is included at end of command?

            Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos