ExtJs 省市级联选择代码

Posted 领尚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ExtJs 省市级联选择代码相关的知识,希望对你有一定的参考价值。


extjs 省市级联代码,掌握了,其实省市县等多级联动是一样的


        
            xtype: "combo",
            id: 'prov',
            name: 'prov',
            fieldLabel: '省份',
            width: 280,
            store: provincestore,
            mode: 'local',
            queryMode: 'local',
            editable: false,
            displayField: 'province',
            valueField: 'province',
            allowBlank: true,
            enabled: true,
            value: '',
            listeners: 
                change: function (mecombo)          // 监听省份的选择,变化时去修改市的combo的store
                    citystore.load(
                        params: 
                            subId: mecombo.getValue()
                        
                    );
                    Ext.getCmp('city').setValue('');
                
            ,
            selectOnFocus: true
        ,
            xtype: "combo",
            id: 'city',
            name: 'city',
            fieldLabel: '城市',
            width: 280,
            store: citystore,
            mode: 'local',
            queryMode: 'local',
            editable: false,
            displayField: 'city',
            valueField: 'city',
            allowBlank: true,
            enabled: true,
            value: '',
            listeners: 
                change: function (mecombo)               // 监听市的选择变化,变化时去修改邮政编码栏的值
                    var record = citystore.getAt(citystore.find('city', mecombo.getValue()));
                    if (record) 
                        Ext.getCmp('Postcode').setValue(record.raw.zipcode);
                    
                
            ,  
            id: 'Postcode', 
            name: 'Postcode', 
            xtype: 'textfield', 
            labelWidth: 90, 
            fieldLabel: '邮政编码', 
            width: 210 
            





以上是关于ExtJs 省市级联选择代码的主要内容,如果未能解决你的问题,请参考以下文章

vue + mint-ui 省市区级联选择

省市二级联动

请问用啥方式可以实现省市级联的效果呀 省市的数据是从数据库中查出来的

iview Cascader级联选择省市区问题,并附上数据

省市级关联

Element UI 中国省市区级联选择器