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

Why is the origin of “threshold” uncertain?

How to stop co-workers from teasing me because I know Russian?

What is the difference between `a[bc]d` (brackets) and `ab,cd` (braces)?

If Earth is tilted, why is Polaris always above the same spot?

Why do Ichisongas hate elephants and hippos?

Python "triplet" dictionary?

Has any spacecraft ever had the ability to directly communicate with civilian air traffic control?

Why was Germany not as successful as other Europeans in establishing overseas colonies?

Minimum value of 4 digit number divided by sum of its digits

What does YCWCYODFTRFDTY mean?

Can fracking help reduce CO2?

Weird result in complex limit

In the time of the mishna, were there Jewish cities without courts?

Is it possible to measure lightning discharges as Nikola Tesla?

How to determine the actual or "true" resolution of a digital photograph?

How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?

Why does nature favour the Laplacian?

Transfer over $10k

"ne paelici suspectaretur" (Tacitus)

In gnome-terminal only 2 out of 3 zoom keys work

Is it possible to Ready a spell to be cast just before the start of your next turn by having the trigger be an ally's attack?

When did stoichiometry begin to be taught in U.S. high schools?

Feels like I am getting dragged in office politics

Please, smoke with good manners



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.5k21331




    19.5k21331







    • 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,33232158




        2,33232158



























            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

            Sum ergo cogito? 1 nng

            419 nièngy_Soadمي 19bal1.5o_g

            Queiggey Chernihivv 9NnOo i Zw X QqKk LpB