我怎样才能使文本字段在 grails 中只读?
我怎样才能使文本字段在 grails 中只读。
我尝试在文本字段上使用只读属性,如下所示,但它不起作用。
<g:textField name="fname" size="14px" id="fname" value="${patient.fname}" readonly="true">
how can i make a textfield read only in grails.
I tried with readonly attribute on textfield as below but its not working.
<g:textField name="fname" size="14px" id="fname" value="${patient.fname}" readonly="true">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用disabled="true",则该值实际上不会在表单中提交,因此应使用
标记。例如,
更多信息此处
If you use disabled="true" the value will not actually be submitted in the form, so the
<g:field/>
tag should be used.For example,
More info here
它不允许只读,尝试禁用=“true”
It does not allows readonly, try disabled="true"
您可以使用 readonly="readonly"
You can use readonly="readonly"