easyui 為所有的 combobox增加清除按鈕
將以下js程式碼加入到頁面,注意要在easyui的庫(一般是jquery.easyui.min.js)之後加入
$.fn.combobox.defaults.icons=[{
iconCls:'icon-clear',handler:function(e){
//alert($(e.handleObj.data.target).combobox('getValue'));
$(e.handleObj.data.target).combobox('clear');
}
}];