groovy / grails - 域对象和工具提示

时间:2011-10-15 11:56:47

标签: grails groovy

给定一个带有

属性的grails域对象
Integer displayOrder
Boolean visible

...关联这些字段的元信息以便在编辑视图中显示工具提示的最佳方法是什么?

非常感谢。

1 个答案:

答案 0 :(得分:2)

我可能只是向message.properties添加一条消息,内容为:

// messages.properties
myDomain.myField.tooltip = Enter an awesome field value for this field

然后在字段旁边的标记中适当地渲染它,或者在任何地方:

<g:message code="myDomain.myField.tooltip"/>