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

发布于 2024-12-09 20:58:14 字数 149 浏览 0 评论 0原文

给定一个具有以下属性的 grails 域对象

Integer displayOrder
Boolean visible

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

非常感谢。

Given a grails domain object with properties like

Integer displayOrder
Boolean visible

... what would be the best way to associate meta information about these fields for display on tooltips in edit view?

Thanks a bunch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以酷 2024-12-16 20:58:14

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

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

然后在字段旁边或其他位置的标记中适当地呈现它:

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

I would probably just add a message to message.properties with the content:

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

And then render it appropriately in the markup alongside the field, or wherever:

<g:message code="myDomain.myField.tooltip"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文