JSF passthrough元素按钮错误



我需要这个没有PrimeFaces标签,但它不起作用。

html:

<f:view xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:jsf="http://xmlns.jcp.org/jsf"
    xmlns:p="http://primefaces.org/ui">
    <button jsf:id="myButton" onclick="alert('buttonClick');">Button</button>
</f:view>

Primefaces错误:

Uncaught TypeError: Cannot read property 'left' of undefined(匿名函数)bI.event.dispatch cc.handle

我认为一个primefaces按钮应该是:

<p:button outcome="outcome" value="myBUtton" icon="ui-icon-star">
    <f:param name="buttonId" value="1" />
</p:button>

如果您试图通过按钮传递值(参数)

相关内容

  • 没有找到相关文章