[Mobile Scheduler] How do I make certain fields read only?

Hello,

So, I was able to make certain fields visible and hidden through “.show()” and “.hide()”. Now, is there any way to make certain fields read-only? Based on our business rules, I can’t really hide them, but only show them when the details form is shown.

Thanks,

Jim

Hello Jim,

In you form configuration you can set some fields readonly or use custom fields.

{view: text, readonly: true, … }

Thank you. I appreciate the help.