我在 Ext JS in Action(J. Garcia 著)中读到,如果我们有 Ext.data.Record 的实例,我们可以使用表单的 loadRecord 方法来设置表单的值。但是,他没有给出一个工作示例(在示例中,他使用数据通过名为 data.php 的文件加载到表单中)。我搜索了许多论坛,发现以下条目很有帮助,因为它让我了解了如何使用表单的 loadRecord 方法解决我的问题: 从网格加载数据到表单
现在我的商店和网格的代码如下:
var userstore = Ext.create('Ext.data.Store', {
storeId: 'viewUsersStore',
model: 'Configs',
autoLoad: true,
proxy: {
type: 'ajax',
url: '/user/getuserviewdata.castle',
reader: {
type: 'json',
root: 'users'
},
listeners: {
exception: function (proxy, response, operation, eOpts) {
Ext.MessageBox.alert("Error", "Session has timed-out. Please re-login and try again.");
}
}
}
});
var grid = Ext.create('Ext.grid.Panel', {
id: 'viewUsersGrid',
title: 'List of all users',
store: Ext.data.StoreManager.lookup('viewUsersStore'),
columns: [
{ header: 'Username', dataIndex: 'username' },
{ header: 'Full Name', dataIndex: 'fullName' },
{ header: 'Company', dataIndex: 'companyName' },
{ header: 'Latest Time Login', dataIndex: 'lastLogin' },
{ header: 'Current Status', dataIndex: 'status' },
{ header: 'Edit',
menuDisabled: true,
sortable: false,
xtype: 'actioncolumn',
width: 50,
items: [{
icon: '../../../Content/ext/img/icons/fam/user_edit.png',
tooltip: 'Edit user',
handler: function (grid, rowIndex, colIndex) {
var rec = userstore.getAt(rowIndex);
alert("Edit " + rec.get('username')+ "?");
EditUser(rec.get('id'));
}
}]
},
]
});
function EditUser(id) {
//I think I need to have this code here - I don't think it's complete/correct though
var formpanel = Ext.getCmp('CreateUserForm');
formpanel.getForm().loadRecord(rec);
}
'CreateUserForm' 是一个已经存在的表单的 ID,当用户点击编辑图标时它应该出现。然后应该使用网格行中的正确数据自动填充该弹出表单。
但是我的代码不起作用。我在“formpanel.getForm().loadRecord(rec)”行收到错误消息 - 它显示“Microsoft JScript 运行时错误:'undefined' is null or not an object”。
关于如何解决这个问题的任何提示?