Author | Posts |
---|---|
johannesodeg
July 14, 2018 at 1:31 pm
|
Heads up! this post was created when Microthemer was at version 5. The current version is 7. Some references to the interface may be out of date. Can I make a formfield readonly using microthemer? – Johannes |
Sebastian
July 16, 2018 at 1:03 pm
|
Hey Johannes, To make a form field read only, you need to add the readyonly attribute to the HTML element rather than doing anything in Microthemer. The following article explains this: https://www.w3schools.com/tags/att_input_readonly.asp Once you’ve set your form field as readonly, you can style it differently from the other read & write fields with Microthemer by enabling the :read-only pseudo selector when targeting the element:
Note: I’ve just noticed that Microthemer requires the readonly attribute to be added with the following syntax:
(rather than just readonly by itself) This will be fixed in the next day or two. I’ve already updated my development version of Microthemer, but I need to finish some other updates I’m half way through before rolling out an update. I hope that’s OK. Finally, you can dynamically change whether nor not form elements are readonly with JavaScript: https://www.w3schools.com/jsref/prop_text_readonly.asp If you want to go down this route, you can add some custom JavaScript via Microthemer’s JS editor – View > Code editor (the last tab on the right). I hope that helps. Please let me know if you have any further questions. Thanks! |