Ext.Ajax.request({
method: 'POST',
url: 'Handler1.ashx',
params: { cla1: Ext.getCmp("combo1").getRawValue(), pro1: Ext.getCmp("combo2").getRawValue(), grade1: Ext.getCmp("text1_score").getValue() },
success: function (response, options) {
alert(response.responseText);//这个地方时能返回json数据的。
store00.loadData([response.responseText]);
store00.load;
执行完这个后gridpanel里面只有表格没有数据 是loaddata的问题吗