Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 i18n 使用 GWT 消息。
在 ui.xml 文件中,我定义:
<g:Image ui:field="logo" url="img.png"> <ui:attribute name='title' ui:description='tooltip for image'/> </g:Image>
在应用程序启动时,GWT 环境抱怨:封闭元素需要为属性“标题”提供默认值
我找不到任何关于向 . 你知不知道怎么?
弄清楚了!
这不是 ui:attribute 上缺少的属性!只需将 title='the default text' 添加到 g:Image 标签。