EXTJS4 - 获取 GridPanel 中的第一条记录
我在 EXTJS4 中有一个带有 JSONstore 的 GridPanel。像这样:
var storeGridSpe = Ext.create('Ext.data.JsonStore',{
proxy: {
type: 'ajax',
url: 'get-data-for-gridspe.php',
reader: {
type: 'json',
root: 'rows',
totalProperty: 'totalCount'
}
},
autoDestroy: true,
fields: [
{name: 'specie'},
{name: 'conta'}
]
});
var GridSpe = Ext.create('Ext.grid.GridPanel',{
store: storeGridSpe,
id: 'gridspe',
flex:1,
autoScroll: true,
columns: [
{id:'specie', header: "Specie", dataIndex: 'specie', flex:1},
{id:'conta', header: "Selezioni", dataIndex: 'conta', width:75}
]
});
如何获取第一个 GridPanel 记录的值?例如“specie”列。
非常感谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
storeGridSpe.first().get('specie')
ExtJS4 稍微改变了模型查询,因此您可能需要进行调整才能使其正常工作。
这是 Ext.data.Store,这将我指向了
first()
方法,这里是 Ext.data.Model,指示get()
作为要使用的方法。4.0.x
仍然非常不稳定,因此什么都不能工作。 :PThis should work:
storeGridSpe.first().get('specie')
ExtJS4 has changed model querying a bit, so you may need to a tweak to get this to work exactly right.
Here's Ext.data.Store, which pointed me to the
first()
method, and here's Ext.data.Model, which indicatedget()
as the method to use.4.0.x
is still pretty volatile, so nothing or everything may work. :P根据您加载内容的方式,您可能需要等到网格存储的代理完成加载数据,例如
Depending on how you are loading things up, you might need to wait until the grid's store's proxy has finished loading data e.g.