extjs 中比较常见且好用的监听事件
程序员文章站
2023-12-25 20:06:33
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); })