ComboBox listeners:{ expand:function(){ //此函數是,點擊下拉框展開的時候事件 }, select:function(com, record, index){ //下拉框選擇事件 //比如二級聯動 }, change:function(this,newValu... ...
ComboBox listeners:{ expand:function(){ //此函數是,點擊下拉框展開的時候事件 }, select:function(com, record, index){ //下拉框選擇事件 //比如二級聯動 }, change:function(this,newValue,oldValue,e){ //下拉框值改變事件 } } Grid listeners:{ itemdbclick:function(grid,record,item,reowIndex,e){ //雙擊事件 //比如雙擊grid行,顯示詳情出來 }, afterrenderer:function(){ //渲染後事件,可以去後臺校驗登錄人信息去設置相關的許可權等等 //比如某些點擊按鈕只對有某個角色的人員的顯示 }, beforerenderer:function(){ //渲染前事件 } } Store //解決分頁查詢傳參問題。 store.on(‘beforeload’,function(){ var apply = Ext.getCmp('applytime').getValue(); var end = Ext.getCmp('endtime').getValue(); var new_params = { applytime : start, endtime : stop }; Ext.apply(store.proxy.extraParams, new_params); })