Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / Property.html
1 <!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-grid.property.Property-method-constructor'><span id='Ext-grid.property.Property'>/**
2 </span></span> * @class Ext.grid.property.Property
3  * A specific {@link Ext.data.Model} type that represents a name/value pair and is made to work with the
4  * {@link Ext.grid.property.Grid}.  Typically, Properties do not need to be created directly as they can be
5  * created implicitly by simply using the appropriate data configs either via the {@link Ext.grid.property.Grid#source}
6  * config property or by calling {@link Ext.grid.property.Grid#setSource}.  However, if the need arises, these records
7  * can also be created explicitly as shown below.  Example usage:
8  * &lt;pre&gt;&lt;code&gt;
9 var rec = new Ext.grid.property.Property({
10     name: 'birthday',
11     value: Ext.Date.parse('17/06/1962', 'd/m/Y')
12 });
13 // Add record to an already populated grid
14 grid.store.addSorted(rec);
15 &lt;/code&gt;&lt;/pre&gt;
16  * @constructor
17  * @param {Object} config A data object in the format:&lt;pre&gt;&lt;code&gt;
18 {
19     name: [name],
20     value: [value]
21 }&lt;/code&gt;&lt;/pre&gt;
22  * The specified value's type
23  * will be read automatically by the grid to determine the type of editor to use when displaying it.
24  */
25 Ext.define('Ext.grid.property.Property', {
26     extend: 'Ext.data.Model',
27
28     alternateClassName: 'Ext.PropGridProperty',
29
30     fields: [{
31         name: 'name',
32         type: 'string'
33     }, {
34         name: 'value'
35     }],
36     idProperty: 'name'
37 });</pre></pre></body></html>