我有AA非常簡單JSPX不支持bean:甲骨文ADF自動對焦:INPUTFILE和AF:的commandButton給JS錯誤在IE 9
<f:view>
<af:document id="d1" title="Home">
<af:form id="f1" usesUpload="true">
<af:pageTemplate value="#{bindings.pageTemplateBinding.templateModel}" id="pt1">
<f:facet name="content">
<af:group>
<af:inputFile label="" id="logoImageFile" />
<af:commandButton text="Up" />
</af:group>
</f:facet>
</af:pageTemplate>
</af:form>
</af:document>
</f:view>
雖然我點擊commandButton
選擇要上傳的文件後不久, ,IE 9會拋出一個通用的JS錯誤。其他瀏覽器[IE 8,FF,Chrome]工作正常。即使我將autosubmit=true
放在inputFile
中,也會引發錯誤,除非我註釋掉commandButton
。
注意:這可能是一個組件問題,但是想知道您是否有人找到了解決方法/修復/修補程序。我使用的jdev 11.1.1.5
感謝JS錯誤已停止。不過,我有一個類似的頁面,'commandButton'從後臺bean調用一個動作,它只刷新整個頁面* only * IE9 –