使用Store ajax的方式来获取数据 Ext.onReady(function() { var store = new Ext.data.JsonStore({ // store configs storeId: 'myStore'...
分类:
Web程序 时间:
2015-05-26 13:59:20
阅读次数:
353
myStore?=??new?Ext.data.JsonStore({?? ??proxy:?new?Ext.data.HttpProxy({??? ??????????????url:?"http://www.example.com/test.php",?? ??????????????timeout...
分类:
Web程序 时间:
2015-05-07 20:34:11
阅读次数:
155
varstore=Ext.create(‘Ext.data.JsonStore‘,{fields:[‘name‘,‘data‘],data:[{‘name‘:‘metricone‘,‘data‘:10},{‘name‘:‘metrictwo‘,‘data‘:7},{‘name‘:‘metricthree‘,‘data‘:5},{‘name‘:‘metricfour‘,‘data‘:2},{‘name‘:‘metricfive‘,‘data‘:27}]});Ext.create(‘Ext.chart.Chart..
分类:
Web程序 时间:
2015-02-06 19:03:26
阅读次数:
173
varstore=Ext.create(‘Ext.data.JsonStore‘,{fields:[‘name‘,‘data1‘,‘data2‘,‘data3‘,‘data4‘,‘data5‘],data:[{‘name‘:‘metricone‘,‘data1‘:10,‘data2‘:12,‘data3‘:14,‘data4‘:8,‘data5‘:13},{‘name‘:‘metrictwo‘,‘data1‘:7,‘data2‘:8,‘data3‘:16,‘data4‘:10,‘data5‘:3},{‘nam..
分类:
Web程序 时间:
2015-02-02 20:00:00
阅读次数:
191
最近在看项目源码的时候发现了如下代码,其中_searchSupplierStore是JsonStore对象
_searchSupplierStore.on('beforeload',function(thiz,options){
thiz.baseParams["cusCode"]="%"+Ext.getCmp('id_cusCodetext').getValue()+"%";
t...
分类:
Web程序 时间:
2014-05-18 05:50:35
阅读次数:
247