http://icefaces-showcase.icesoft.org/showcase.jsf?grp=ace:dialog&exp=Server%20Initiated我只是想学习如何使用这个组件。但是无法运行这个例子。当我点击按钮时没有任何反应。有人有什么想法吗?也没有错误消息。
MainFolder
这是示例中的客户端代码。
答案 0 :(得分:0)
<h:form prependId="false">
<h:commandButton id="show" value="Show Dialog" onclick="ice.ace.instance('myDialog').show();" type="button"/>
<ace:dialog id="myDialog"
header="A sample dialog overview example"
width="400">
<h:outputText value="i will fix this"/>
</ace:dialog>
</h:form>
我能够找到问题的解决方案。其中一个关键问题是我想使用prependId =&#34; false&#34;与形式。所以现在基本功能正常工作,点击按钮点击ace:对话框。