how can i make a textfield read only in grails?

不羁岁月 提交于 2019-12-01 18:10:52

It does not allows readonly, try 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,

<g:field type="text" name="name" readonly="readonly" value="${instance.?name}"/>

More info here

You can use readonly="readonly"

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!