Ext4.0 怎么给Panle设置动态的titile
求大神,怎么从store里面拿到数据给panle设置title
------解决方案--------------------你这个store的load方法向后台发出请求,然后
listeners:{
load:function(records){
panel.setTitle(records[0].get('title'));
}
}
或者store里已经有数据了
那么久var records = store.getrange();
遍历取出你想要的title
然后setTilte