Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
420
Show Column On Grid / Hide Column In RowEditDialog
posted

I would like to have a column show in the grid, however I want to hide it in the RowEditDialog. How can this be done?

Parents
No Data
Reply
  • 17590
    Verified Answer
    Offline posted

    Hello William,

    Thank you for posting in our community.

    I assume that the column that you would like to hide from the row edit dialog is read only. In this case there is an option, showReadOnlyEditors, that controls if editors should be rendered for read-only columns. This option can be se as following:

    $("#grid").igGrid({
        features: [
            {
                name: "Updating",
                rowEditDialogOptions: {
                        showReadonlyEditors: false
                }
            }
        ]
    });

    Please test my suggestion on your side and let me know if you need any further assistance with this matter. 

Children