-
-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
html input readonly attribute #674
Comments
Hi @cunneen. It was actually requested a few times already - both on Gitter and here (e.g. #628). Up to this point, we were strongly against, as it's hard to support it across all themes in a consistent way. Right now, thinking about v3 (#646), I think we can actually do it. It'll require some work in the core (probably easy as soon as we'll manage the context extensions properly) and definitely more work in the themes. But the good thing about it is that we don't have to do it all at once - one at a time is OK. The plan is as follows:
|
Hi, the
readonly
attribute of an html input doesn't seem to be supported. I want to use it in the case where one of the fields is calculated from others, so that the user sees and submits the value but can't modify it via the UI.The
disabled
attribute doesn't fit my case as I want it to be styled appropriately via bootstrap themes and submitted accordingly.edit: I'm using SimpleSchema and Bootstrap 3.
The text was updated successfully, but these errors were encountered: