extjs combobox 如何获取点击事件



0

extjs combobox 如何获取点击事件 5

extjs combobox 我想获取点击输入框旁边那个按钮的事件,expand事件满足不了我的需求。求指教 
ExtJS 
2012年12月06日 14:33
  • Comment添加评论
  • 关注(1)

3个答案按时间排序按投票排序

0 0

你的需求到底是什么? 
change---显示的值改变事件 
select---选中选项事件 
expand---下拉框展开事件 
collapse--下拉框折叠事件 
基本能满足需要了吧

2012年12月06日 17:16
  • Comment添加评论
0 0

Js代码   收藏代码
  1.   var combo = new Ext.form.ComboBox({  
  2.       store: store,  
  3.       displayField:'state',  
  4.       typeAhead: true,  
  5.       mode: 'local',  
  6.       forceSelection: true,  
  7.       triggerAction: 'all',  
  8.       emptyText:'Select a state...',  
  9.       selectOnFocus:true,  
  10.       applyTo: 'local-states',  
  11. onTriggerClick:function(){  
  12.     alert('abc');  
  13. }  
  14.   });  


ComboBox没的click事件,下拉按钮的点击事件处理是通过重载从Ext.form.TriggerFiled中继承的方法onTriggerClick实现,如上我给的实现,但是这种实现破坏了combobox原有的功能。 


要不你描述下有何有需求,怎么可能expand事件满足不了呢

2012年12月06日 15:02
  • Comment1条评论
0 0

是那个用户在点击下拉箭头,onTriggerClick 这个吧。 

0

extjs combobox 如何获取点击事件 5

extjs combobox 我想获取点击输入框旁边那个按钮的事件,expand事件满足不了我的需求。求指教 
ExtJS 
2012年12月06日 14:33
src="http://www.iteye.com/iframe_ggbd/186" scrolling="no" width="468" height="60" frameborder="0">
  • Comment添加评论
  • 关注(1)

3个答案按时间排序按投票排序

0 0

你的需求到底是什么? 
change---显示的值改变事件 
select---选中选项事件 
expand---下拉框展开事件 
collapse--下拉框折叠事件 
基本能满足需要了吧

2012年12月06日 17:16
  • Comment添加评论
0 0

Js代码   收藏代码
  1.   var combo = new Ext.form.ComboBox({  
  2.       store: store,  
  3.       displayField:'state',  
  4.       typeAhead: true,  
  5.       mode: 'local',  
  6.       forceSelection: true,  
  7.       triggerAction: 'all',  
  8.       emptyText:'Select a state...',  
  9.       selectOnFocus:true,  
  10.       applyTo: 'local-states',  
  11. onTriggerClick:function(){  
  12.     alert('abc');  
  13. }  
  14.   });  


ComboBox没的click事件,下拉按钮的点击事件处理是通过重载从Ext.form.TriggerFiled中继承的方法onTriggerClick实现,如上我给的实现,但是这种实现破坏了combobox原有的功能。 


要不你描述下有何有需求,怎么可能expand事件满足不了呢

2012年12月06日 15:02
  • Comment1条评论
0 0

是那个用户在点击下拉箭头,onTriggerClick 这个吧。 

你可能感兴趣的:(ExtJs)