PropertiesMethodsEventsConfig OptionsDirect Link

Class Ext.grid.PropertyRecord

Package: Ext.grid
Defined In: .js
Class:
Extends: Ext.util.Observable
Ext.grid.PropertyGrid的一种特定类型,用于表示一对“名称/值”的数据。数据的格式必须是Ext.data.Record类型。 典型的,属性记录(PropertyRecords)由于能够隐式生成而不需要直接创建, 只需要配置适当的数据配置,即通过 Ext.grid.PropertyGrid#source的配置属性或是调用 Ext.grid.PropertyGrid#setSource的方法。 然而,如需要的情况下,这些记录也可以显式创建起来,例子如下:

var rec = new Ext.grid.PropertyRecord({
    name: 'Birthday',
    value: new Date(Date.parse('05/26/1972'))
});
//对当前的grid加入记录
grid.store.addSorted(rec);

配置项

这个类没有配置项。

公告属性

这个类没有公告属性。

公共方法

方法 定义者

公告事件

这个类没公共的事件。