ext.js(2.2)实现两级级联

最近使用ext.js插件实现级联查询,但是项目使用的版本较低。导致了很多不必要的问题,特记录在此 以便以后需要。
以下代码是在高版本下实现



   
   	    
      
   
   
   
   
   

低版本下核心代码

  listeners:{
                    select : function(combo, record, index){
                    //界面加载赋值
                    Ext.getCmp('city_county').setValue(attr_county[index][0]);
                    //获取store对象
                    var data=Ext.getCmp('city_county').store
                    data.removeAll();
                    for(var i=0;i

你可能感兴趣的:(前端)