0
<rich:calendar id="orderpickDate" oninputfocus="check(#{myForm.packingListId})"
創建日曆時,您會看到一個輸入字段和彈出日曆的img。Richfaces日曆 - 如何禁用加載頁面後彈出日曆
在JS函數I可以禁用輸入字段:
function check(packId) {
var canEditThisDate = true;
// canEditThisDate = true/false <-- checked using jQuery.ajax() if date can still be
// updated by the user
if (! canEditThisDate) {
jQuery("input[id='shipmentForm:orderpickDateInputDate']").attr("disabled", true);
}
}
輸入字段可以不然後手動更改。 但是,您仍然可以單擊img並選擇一個日期,然後使用所選日期更新輸入字段。
如何禁用js函數中的richfaces彈出窗口?