Conditionally enable edit in lightning:datatableCustom html label in lightning:buttonWinter 18 <lightning:datatable> problemsSpring 18 <lightning:datatable> how to add a button columnlightning:datatable component - hiding Save and Cancel buttons after inline editHelp with working with lightning:dataTable?Reload after “e.force:editRecord”?Conditionally Render Button in lightning:datatablelightning:datatable set columns dynamicalyStatic values for `<lightning:datatable>`lightning:datatable won't show data in column with type of 'boolean'

A Paper Record is What I Hamper

Creating a chemical industry from a medieval tech level without petroleum

Where was the County of Thurn und Taxis located?

Is there metaphorical meaning of "aus der Haft entlassen"?

Which big number is bigger?

Are there moral objections to a life motivated purely by money? How to sway a person from this lifestyle?

Co-worker works way more than he should

Does a large simulator bay have standard public address announcements?

Crossed out red box fitting tightly around image

How bug prioritization works in agile projects vs non agile

Why do games have consumables?

How do I reattach a shelf to the wall when it ripped out of the wall?

std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?

A ​Note ​on ​N!

What is the unit of time_lock_delta in LND?

How long after the last departure shall the airport stay open for an emergency return?

Do I need to watch Ant-Man and the Wasp and Captain Marvel before watching Avengers: Endgame?

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

How to not starve gigantic beasts

Is there any pythonic way to find average of specific tuple elements in array?

"The cow" OR "a cow" OR "cows" in this context

A faster way to compute the largest prime factor

Multiple fireplaces in an apartment building?

A strange hotel



Conditionally enable edit in lightning:datatable


Custom html label in lightning:buttonWinter 18 <lightning:datatable> problemsSpring 18 <lightning:datatable> how to add a button columnlightning:datatable component - hiding Save and Cancel buttons after inline editHelp with working with lightning:dataTable?Reload after “e.force:editRecord”?Conditionally Render Button in lightning:datatablelightning:datatable set columns dynamicalyStatic values for `<lightning:datatable>`lightning:datatable won't show data in column with type of 'boolean'






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








2















I'm trying to do a dynamic editable field, this is what I've got:



Component



<lightning:datatable columns="!v.columns"
data="! v.data "
keyField="! v.keyField "
onsave="! c.handleSaveEdition "
/>


data



[
field1: 't1c1', field2: 't1c2', field3: 't1c3', field3Editable: true,
field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: true,
field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: false,
];


column



[
label: 'Col 1', fieldName: 'field1', type: 'text', sortable: false,
label: 'Col 2', fieldName: 'field2', type: 'text', sortable: false,
label: 'Col 3', fieldName: 'field3', type: 'text', sortable: false, editable: fieldName: 'field3Editable',
];


but even with the last "field3Editable" from data seted as false the field appears as editable.










share|improve this question






























    2















    I'm trying to do a dynamic editable field, this is what I've got:



    Component



    <lightning:datatable columns="!v.columns"
    data="! v.data "
    keyField="! v.keyField "
    onsave="! c.handleSaveEdition "
    />


    data



    [
    field1: 't1c1', field2: 't1c2', field3: 't1c3', field3Editable: true,
    field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: true,
    field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: false,
    ];


    column



    [
    label: 'Col 1', fieldName: 'field1', type: 'text', sortable: false,
    label: 'Col 2', fieldName: 'field2', type: 'text', sortable: false,
    label: 'Col 3', fieldName: 'field3', type: 'text', sortable: false, editable: fieldName: 'field3Editable',
    ];


    but even with the last "field3Editable" from data seted as false the field appears as editable.










    share|improve this question


























      2












      2








      2








      I'm trying to do a dynamic editable field, this is what I've got:



      Component



      <lightning:datatable columns="!v.columns"
      data="! v.data "
      keyField="! v.keyField "
      onsave="! c.handleSaveEdition "
      />


      data



      [
      field1: 't1c1', field2: 't1c2', field3: 't1c3', field3Editable: true,
      field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: true,
      field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: false,
      ];


      column



      [
      label: 'Col 1', fieldName: 'field1', type: 'text', sortable: false,
      label: 'Col 2', fieldName: 'field2', type: 'text', sortable: false,
      label: 'Col 3', fieldName: 'field3', type: 'text', sortable: false, editable: fieldName: 'field3Editable',
      ];


      but even with the last "field3Editable" from data seted as false the field appears as editable.










      share|improve this question
















      I'm trying to do a dynamic editable field, this is what I've got:



      Component



      <lightning:datatable columns="!v.columns"
      data="! v.data "
      keyField="! v.keyField "
      onsave="! c.handleSaveEdition "
      />


      data



      [
      field1: 't1c1', field2: 't1c2', field3: 't1c3', field3Editable: true,
      field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: true,
      field1: 't2c1', field2: 't2c2', field3: 't3c3', field3Editable: false,
      ];


      column



      [
      label: 'Col 1', fieldName: 'field1', type: 'text', sortable: false,
      label: 'Col 2', fieldName: 'field2', type: 'text', sortable: false,
      label: 'Col 3', fieldName: 'field3', type: 'text', sortable: false, editable: fieldName: 'field3Editable',
      ];


      but even with the last "field3Editable" from data seted as false the field appears as editable.







      lightning-aura-components lightning lightning-datatable






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 7 hours ago









      Jayant Das

      19.4k21331




      19.4k21331










      asked 8 hours ago









      M. MassulaM. Massula

      312




      312




















          1 Answer
          1






          active

          oldest

          votes


















          3














          Per documentation, the editable attribute for lightning:datatable is applicable directly at the column level, and it does not mention anything at cell level, excerpt below:




          Specifies whether a column supports inline editing. The default is false.




          With a quick test, I could confirm that you won't be able to disable a particular cell in a lightning:datatable with the syntax you have currently. With what you have currently editable: fieldName: 'field3Editable' is not the right syntax based on the documentation. The attribute itself should be set to editable: true or editable: false.



          The syntax that you have currently seems to be always evaluated as editable: true by the platform, most likely it simply ignores any error and sets it to true. Even if you say have something as editable: nonExistentFieldName: 'nonExistentFieldValue' you will be still able to see that the cells are editable.



          If you want to disable any particular cell, you may have to look at alternative solutions here as you may not be able to achieve it using lightning:datatable.






          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%2f260099%2fconditionally-enable-edit-in-lightningdatatable%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            Per documentation, the editable attribute for lightning:datatable is applicable directly at the column level, and it does not mention anything at cell level, excerpt below:




            Specifies whether a column supports inline editing. The default is false.




            With a quick test, I could confirm that you won't be able to disable a particular cell in a lightning:datatable with the syntax you have currently. With what you have currently editable: fieldName: 'field3Editable' is not the right syntax based on the documentation. The attribute itself should be set to editable: true or editable: false.



            The syntax that you have currently seems to be always evaluated as editable: true by the platform, most likely it simply ignores any error and sets it to true. Even if you say have something as editable: nonExistentFieldName: 'nonExistentFieldValue' you will be still able to see that the cells are editable.



            If you want to disable any particular cell, you may have to look at alternative solutions here as you may not be able to achieve it using lightning:datatable.






            share|improve this answer



























              3














              Per documentation, the editable attribute for lightning:datatable is applicable directly at the column level, and it does not mention anything at cell level, excerpt below:




              Specifies whether a column supports inline editing. The default is false.




              With a quick test, I could confirm that you won't be able to disable a particular cell in a lightning:datatable with the syntax you have currently. With what you have currently editable: fieldName: 'field3Editable' is not the right syntax based on the documentation. The attribute itself should be set to editable: true or editable: false.



              The syntax that you have currently seems to be always evaluated as editable: true by the platform, most likely it simply ignores any error and sets it to true. Even if you say have something as editable: nonExistentFieldName: 'nonExistentFieldValue' you will be still able to see that the cells are editable.



              If you want to disable any particular cell, you may have to look at alternative solutions here as you may not be able to achieve it using lightning:datatable.






              share|improve this answer

























                3












                3








                3







                Per documentation, the editable attribute for lightning:datatable is applicable directly at the column level, and it does not mention anything at cell level, excerpt below:




                Specifies whether a column supports inline editing. The default is false.




                With a quick test, I could confirm that you won't be able to disable a particular cell in a lightning:datatable with the syntax you have currently. With what you have currently editable: fieldName: 'field3Editable' is not the right syntax based on the documentation. The attribute itself should be set to editable: true or editable: false.



                The syntax that you have currently seems to be always evaluated as editable: true by the platform, most likely it simply ignores any error and sets it to true. Even if you say have something as editable: nonExistentFieldName: 'nonExistentFieldValue' you will be still able to see that the cells are editable.



                If you want to disable any particular cell, you may have to look at alternative solutions here as you may not be able to achieve it using lightning:datatable.






                share|improve this answer













                Per documentation, the editable attribute for lightning:datatable is applicable directly at the column level, and it does not mention anything at cell level, excerpt below:




                Specifies whether a column supports inline editing. The default is false.




                With a quick test, I could confirm that you won't be able to disable a particular cell in a lightning:datatable with the syntax you have currently. With what you have currently editable: fieldName: 'field3Editable' is not the right syntax based on the documentation. The attribute itself should be set to editable: true or editable: false.



                The syntax that you have currently seems to be always evaluated as editable: true by the platform, most likely it simply ignores any error and sets it to true. Even if you say have something as editable: nonExistentFieldName: 'nonExistentFieldValue' you will be still able to see that the cells are editable.



                If you want to disable any particular cell, you may have to look at alternative solutions here as you may not be able to achieve it using lightning:datatable.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 7 hours ago









                Jayant DasJayant Das

                19.4k21331




                19.4k21331



























                    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%2f260099%2fconditionally-enable-edit-in-lightningdatatable%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

                    Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

                    Fil:Tokke komm.svg

                    Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?