Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
my second question is regarding hiding column from modal editor. Is there any way how to easily hide column from modal editor?
In case I have column with computed values, for example:
I believe there is no reason to display it in modal crud editor. I'm able to make it read only but not easily hide it.
I found in docs mention about
columnDefType: "display",
but this means that content of the column isn't displayed in table too. So only solution is to override also Cell: {} property and re-display it again:I believe it would be much easier to have some new propetry to mark column as not visibile in editation mode (for example something like
columnVisibility
) but only for editor.Thank you
Edit PS: I now find a dirty way to filter it via
renderEditRowDialogContent
, but I need to touch inside ReactNode.:I believe there has to be easier way to do that :-)
Beta Was this translation helpful? Give feedback.
All reactions