sencha touch selectfield 二级联动的例子

这个应该用的蛮多的,为啥中文没有例子呢?

两个selectfield,第一个在change事件里面修改第二个的store就可以了

{
                        xtype:'selectfield',                     
                        label:'入学年份',                       
                        displayField:"startyear",
                        valueField:"startyear",                      
                        listeners:{
                            change: function(selectbox,newValue,oldValue)
                            {
                                var comboCity = Ext.getCmp('classno');                    
                                var store = comboCity.getStore().filter('startyear', this.getValue());
                              
                            }
                        }

                    },
                    {
                        xtype:'selectfield',                    
                        id:'classno',
                        label:'选择所在班级',
                        store:'ClassStore',
                        displayField:"classno",
                        valueField:"classno",
                    },

你可能感兴趣的:(sencha touch selectfield 二级联动的例子)