gpt4 book ai didi

extjs - 使用 MixedCollection 数据存储

转载 作者:行者123 更新时间:2023-12-04 17:37:31 26 4
gpt4 key购买 nike

是否可以在 ExtJS 4.1.x 中执行此过程?

var myMixedCollection = myStore.queryBy(...);
var anotherStore = Ext.create('Ext.data.Store', { data: myMixedCollection, ... });
var myGrid = Ext.create('Ext.grid.Panel', { store: anotherStore, ... });

因为我的网格不显示任何内容或只显示一个空行。
当我登录我的 myMixedCollection没有问题所有数据都在这里但是当我打开我的 anotherStore使用 Firebug,我可以看到我的数据存储中只有一个空行。

最佳答案

myMixedCollection将是记录(模型实例)的集合,只要新商店具有相同的模型集,这将起作用!所以答案是

好吧,你肯定需要调用 getRange() myMixedCollection实例

这是一个工作示例

 // Set up a model to use in our Store
Ext.define('Simpson', {
extend: 'Ext.data.Model',
fields: [
{name: 'name', type: 'string'},
{name: 'email', type: 'string'},
{name: 'phone', type: 'string'}
]
});

var s1 = Ext.create('Ext.data.Store', {
model:'Simpson',
storeId:'simpsonsStore',
fields:['name', 'email', 'phone'],
data:{'items':[
{ 'name': 'Lisa', "email":"lisa@simpsons.com", "phone":"555-111-1224" },
{ 'name': 'Bart', "email":"bart@simpsons.com", "phone":"555-222-1234" },
{ 'name': 'Homer', "email":"home@simpsons.com", "phone":"555-222-1244" },
{ 'name': 'Marge', "email":"marge@simpsons.com", "phone":"555-222-1254" }
]},
proxy: {
type: 'memory',
reader: {
type: 'json',
root: 'items'
}
}
});

var mixed = s1.queryBy(function(rec){
if(rec.data.name == 'Lisa')
return true;
});

var s1 = Ext.create('Ext.data.Store', {
model:'Simpson',
storeId:'simpsonsStore2',
fields:['name', 'email', 'phone'],
data: mixed.getRange(),
proxy: {
type: 'memory',
reader: {
type: 'json'
}
}
});

Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
store: Ext.data.StoreManager.lookup('simpsonsStore2'),
columns: [
{ text: 'Name', dataIndex: 'name' },
{ text: 'Email', dataIndex: 'email', flex: 1 },
{ text: 'Phone', dataIndex: 'phone' }
],
height: 200,
width: 400,
renderTo: Ext.getBody()
});

JSFiddle

关于extjs - 使用 MixedCollection 数据存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13881225/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com