Disable Editing on TemplateForm or Fields

Hi,

I made a complex Blazor componentwith a RadzenTemplateForm, and it works fine. I can edit many values with textobox, grids with inline edit,...

And now I want to show same component but in "View" mode, no edit allowed.

I can go one by one all components acting on the Disabled property. But his changes the field appearance to grey (or whatever).

Any tip?

I was trying to "delete" the key pressed on the fields during the OnKeyPress event with no success...

Also I saw a "contenteditable" in the RadzenTemplateForm declaration but also no sucess...

So, resuming, beyond de Disable property any other option?

Thanks in advance.

You can probably use ReadOnly instead of Disabled.

I think that ReadOnly willl work. Thnks.