给定一个带有
属性的grails域对象Integer displayOrder
Boolean visible
...关联这些字段的元信息以便在编辑视图中显示工具提示的最佳方法是什么?
非常感谢。
答案 0 :(得分:2)
我可能只是向message.properties添加一条消息,内容为:
// messages.properties
myDomain.myField.tooltip = Enter an awesome field value for this field
然后在字段旁边的标记中适当地渲染它,或者在任何地方:
<g:message code="myDomain.myField.tooltip"/>