2014-05-14 56 views
0

我需要這個沒有PrimeFaces標籤,但沒有工作。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錯誤:

遺漏的類型錯誤:無法讀取屬性的 '左' 未定義 (匿名函數) bI.event.dispatch cc.handle

回答

0

我相信一個primefaces按鈕應該是:

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

如果您正試圖通過一個按鈕

+0

作品傳遞一個值(參數),但我需要簡單的HTML按鈕

+0

哦,對不起!出於好奇,爲什麼? :) –

+0

我打算在將來刪除Primefaces,但是一個非常大的項目,它會逐漸發生 –