0
上傳不會自動啓動時,我選擇一個文件。仍然需要通過點擊上傳按鈕來手動上傳。立即上傳/自動上傳與豐富:文件上傳
<rich:fileUpload ....
immediateUpload="true">
有沒有辦法使這項工作? 我使用richfaces 4.2.1。
上傳不會自動啓動時,我選擇一個文件。仍然需要通過點擊上傳按鈕來手動上傳。立即上傳/自動上傳與豐富:文件上傳
<rich:fileUpload ....
immediateUpload="true">
有沒有辦法使這項工作? 我使用richfaces 4.2.1。
首先複製fileupload.js到您的應用程序並添加相同的在你的頁面如下圖所示:
<script type="text/javascript" src="#{facesContext.externalContext.requestContextPath}/js/fileupload.js"></script>
二去fileUpload.js,找到一個叫__updateButtons
功能和更新首先如果是用this.__startUpload()
檢查項目長度;
像下面一樣。
__updateButtons: function() {
if (!this.loadableItem && this.list.children(".rf-fu-itm").size()) {
if (this.items.length) {
//this.uploadButton.css("display", "inline-block");
this.__startUpload();// New - Added the immediate upload to work.
} else {