1

每次单击包含 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 呢?

谢谢

4

1 回答 1

0

经过几次测试后,我们发现问题不是由 iconAwesome 属性的存在引起的。通过让它似乎有助于更频繁地释放异常,但在删除了所有 iconAwesome 属性后,我设法重现了这个问题。

我必须在同一个 commandButton 上多次单击并同时单击,我单击按钮并等待几秒钟,然后再次单击它可以工作,但是通过以非常短的间隔单击几毫秒会出现异常。

由于此 commandButton 在 ui:repeat 循环内并包含一个 ActionListener 调用一个接收参数的 bean 方法(正在迭代的列表的对象)我认为这可能是一些问题......分析将继续。 。 谢谢。

于 2016-04-17T14:14:42.317 回答