我通过在 widgets-config.xml 文件中注册它在 IBM Connections 4.0 的配置文件页面中添加了一个新选项卡,该选项卡已成功添加并且工作正常,但问题是我想为选项卡提供一些自定义名称,例如“你好世界”我尝试将标题属性添加到 iWidget xml 文件,但它不起作用,服务器总是选择 widgets-config.xml 中使用的 defId 作为选项卡名称而不是标题属性,我也尝试在小部件中添加名称 - config.xml 文件本身,但空间导致问题。非常感谢这方面的任何帮助。以下是 iWidget xml 文件的外观。
<iw:iwidget name="helloWorld" title="Hello World" xmlns:iw="http://www.ibm.com/xmlns/prod/iWidget"
iScope="HelloWorldWidgetClass" supportedModes="view">
<iw:resource uri="helloworld.js" />
<iw:content mode="view">
<![CDATA[
<div id="frameHolder" style="width:678px;height:606px;">
<iframe id="testFrame" style="width:inherit;height:inherit;border:none;"></iframe>
</div>
]]>
</iw:content>
谢谢, 维奈