#Enable fields on view page

6 messages · Page 1 of 1 (latest)

neat temple
#

For a form I'm working on I need to have a few specific fields enabled in the view page (ViewRecord) I do not need to save these fields but I need to allow them to be modified, so charts on the page can be edited via these fields. Is there a way of doing this or is this generally not allowed on a view page?

austere smeltBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> ✅ Mark Solution

gleaming sparrow
#

->visible(fn($context) => $context === 'view')
->disabled(false)

Try that.

neat temple
gleaming sparrow