0
如何有條件地隱藏/顯示jqgrid的添加/編輯窗體?我試過以下內容:如何有條件地隱藏/顯示jqgrid的添加/編輯窗體?
afterShowForm:function(formid) {
jQuery('form#'+formid).hide();
jQuery('.jqmOverlay').hide();
}
如何有條件地隱藏/顯示jqgrid的添加/編輯窗體?我試過以下內容:如何有條件地隱藏/顯示jqgrid的添加/編輯窗體?
afterShowForm:function(formid) {
jQuery('form#'+formid).hide();
jQuery('.jqmOverlay').hide();
}
我不建議你在某些情況下隱藏表格。用戶將點擊添加或編輯按鈕,它什麼也沒有發生?我認爲這可能會誤導用戶。
取而代之,您可以禁用/啓用或隱藏/顯示navGrid
的編輯按鈕。 The answer演示(請參閱the old demo)如何有條件地啓用/禁用按鈕。 Another answer(請參閱the demo)顯示如何顯示/隱藏navGrid
的按鈕。