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?
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.
This worked for me.
Thank you!
I am glad that you find my suggestion helpful.
Thank you for using Infragistics components.