我不能在ext js分組網格中加載數據。對於ExtJS的分機js分組網格不能加載json數據
我有以下代碼grouping.js
Ext.onReady(函數(){
Ext.QuickTips.init();
var xg = Ext.grid;
var documentType= "";
var fileName="";
var size="";
var fileGPath="";
// shared reader
var reader = new Ext.data.ArrayReader({}, [
{name: 'filename'},
{name: 'size'},
{name: 'author'},
{name: 'date', type: 'date', dateFormat: 'Y-m-d H:i:s'},
{name: 'action'},
{name: 'document'}
]);
變種商店=新Ext.data.GroupingStore({ 讀者:閱讀器, URL :'DocumentListService.jsp', root:'Documents', sortInfo:{field:'filename',direction:「ASC」}, fields:[ {name:'filename',mapping:'FileName'}, {name:'size',mapping :'Size'}, {name:'author',mapping:'Author'}, {name:'date',mapping:'Date'}, {name:'action',mapping:''}, {name:'document',mapping:'Document'} ], groupField:'document' });
var grid = new xg.GridPanel({
id : 'myGridId',
store: store,
columns: [
{id:'filename',header: "File Name", width: 60, sortable: true, dataIndex: 'filename'},
{header: "Size", width: 20, sortable: true, dataIndex: 'size'},
{header: "Author", width: 20, sortable: true, dataIndex: 'author'},
{header: "Date", width: 20, sortable: true, dataIndex: 'date'},
{header: "Action", width: 20, sortable: true, dataIndex: 'action'},
{header: "Document", width: 20, sortable: true, dataIndex: 'document',hidden:'true'}
],
view: new Ext.grid.GroupingView({
forceFit:true,
groupTextTpl: '{text} ({[values.rs[0].get("filename")=="" ? "0" : values.rs.length]} {[values.rs.length > 1 ? "Documents" : "Document"]}) <a href="#" onClick="javascript:document.getElementById(\'hdnId\').value=\'{text}\';document.getElementById(\'form-file-file\').click();" style="align:right"><img src="images/image_add.png" alt="Upload Document" style="border:none;margin-left:390px;"/></a>'
}),
frame:true,
width: 700,
height: 450,
collapsible: true,
animCollapse: false,
title: 'Document Library',
iconCls: 'icon-grid',
renderTo: 'docUpload'
});
var fp = new Ext.FormPanel({
renderTo: 'fi-form',
fileUpload: true,
width: 500,
frame: true,
title: 'File Upload Form',
autoHeight: true,
bodyStyle: 'padding: 10px 10px 0 10px;',
labelWidth: 50,
defaults: {
anchor: '95%',
allowBlank: false,
msgTarget: 'side'
},
items: [{
xtype: 'fileuploadfield',
id: 'form-file',
emptyText: 'Select a File to import',
fieldLabel: 'File',
name: 'file',
buttonCfg: {
text: '',
iconCls: 'upload-icon'
},
listeners: {'fileselected': function(v){
if(fp.getForm().isValid()){
fp.getForm().submit({
url: 'FileUpload.jsp',
waitMsg: 'Uploading your file...',
success: function(fp, jsonObj){
fileName = jsonObj.result.fileName;
size = jsonObj.result.size;
fileGPath = jsonObj.result.fileGPath;
documentType = (document.getElementById("hdnId").value).replace("Document: ","");
addDataToGrid(fileName,fileGPath,size,documentType);
Ext.getCmp('myGridId').getStore().loadData(xg.dummyData);
msg('Success', 'Successfully uploded on the server');
},
failure : function(fp, o){
msg('Failure', 'Failed to upload');
}
});
}
}
}
}]
});
});
,我已經按照如在DocumentListService.jsp JSON字符串
{ 「DocumentList」:[{ 「DocumentGroup」: 「發票」, 「isDocumentBundle」:真, 「isWritable」:真, 「文檔」: [{ 「文件名」: 「ABC.doc」, 「大小」: 「123」, 「作者」: 「XYZ」, 「日期」:「\ /日期(1238025600000) \「, 」FileGPath「:」xyz doc「, 」Document「:」發票 「 },{ 」文件名「: 」ABC.doc「, 」大小「: 」123「, 」作者「: 」XYZ「, 」日期「:」 \ /日期(1238025600000)\/」, 「FileGPath」: 「ABC DOC」, 「文檔」: 「發票」 }] }, { 「DocumentGroup」: 「SOP」, 「isDocumentBundle」:真, 「isWritable」:真, 「Documents」: [{「FileName」:「ABC.doc」, 「Size」:「123」, 「Author」:「xyz」, 「日期」: 「\ /日期(1238025600000)\ /」, 「FileGPath」: 「XYZ DOC」, 「文檔」: 「SOP」 }] } ] }
仍然我不能能加載數據,
plz幫助我,並解決我的問題,我到底犯了什麼錯誤。
但如果我將設置根:'DocumentList'那麼我也無法找到網格中的數據,是否有任何映射問題?感謝您的回覆 – Sanju
實際上是的,它仍然是一個問題,因爲您有多個「文檔」數組,您試圖保存到商店中。我會編輯我的答案。 – nscrob