每次单击包含 iconAwesome 的 ab:commandButton 时都会出现此错误
bsf.js.xhtml?ln=bsf:7 Uncaught TypeError: Cannot read property 'id' of nullBsF.ajax.onevent @ bsf.js.xhtml?ln=bsf:7sendEvent @ jsf.js.xhtml?ln=javax.faces:1response @ jsf.js.xhtml?ln=javax.faces:1onComplete @ jsf.js.xhtml?ln=javax.faces:1AjaxEngine.req.xmlReq.onreadystatechange @ jsf.js.xhtml?ln=javax.faces:1
这里是 xhtml 上使用的导致此类异常的代码,阻止了界面上的所有其他功能。
<b:commandButton look="primary" value="Accept"
iconAwesome="fa-pencil-square-o"
ajax="true"
update="@form"
actionListener="# {navState.popSubContents(1)}"
action="#{courtMan.saveCourtEdit()}" />
没有 iconAwesome 它运行良好。
那么如何在 commandButton 上使用 iconAwesome 呢?
谢谢