/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_data_Record({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Instances of this class encapsulate both Record definition information, and Record\nvalue information for use in Ext.data.Store objects, or any code which needs\nto access Records cached in an Ext.data.Store object.
\n\n\nConstructors for this class are generated by passing an Array of field definition objects to create.\nInstances are usually only created by Ext.data.Reader implementations when processing unformatted data\nobjects.
\n\n\nNote that an instance of a Record class may only belong to one Store at a time.\nIn order to copy data from one Store to another, use the copy method to create an exact\ncopy of the Record, and insert the new instance into the other Store.
\n\n\nWhen serializing a Record for submission to the server, be aware that it contains many private\nproperties, and also a reference to its owning Store which in turn holds references to its Records.\nThis means that a whole Record may not be encoded using Ext.util.JSON.encode. Instead, use the\ndata
and id
properties.
Record objects generated by this constructor inherit all the methods of Ext.data.Record listed below.
\n\nAn object hash representing the data for this Record. Every field name in the Record definition\nis represented by a property of that name in this object. Note that unless you specified a field\nwith name \"id\" in the Record definition, this will not contain\nan id property.
\nReadonly flag - true if this Record has been modified.
\nDefaults to: false
This property is stored in the Record definition's prototype
\n\n\nA MixedCollection containing the defined Fields for this Record. Read-only.
\nThe unique ID of the Record as specified at construction time.
\nThe unique ID of the Record as specified at construction time.
\nOnly present if this Record was created by an ArrayReader or a JsonReader.
\n\n\nThe Array or object which was the source of the data for this Record.
\n\nThis object contains a key and value storing the original values of all modified\nfields or is null if no fields have been modified.
\nOnly present if this Record was created by an XmlReader.
\n\n\nThe XML element which was the source of the data for this Record.
\n\ntrue when the record does not yet exist in a server-side database (see\nmarkDirty). Any record which has a real database pk set as its id property\nis NOT a phantom -- it's real.
\nDefaults to: false
The Ext.data.Store to which this Record belongs.
\nThe Ext.data.Store to which this Record belongs.
\nThis constructor should not be used to create Record objects. Instead, use create to\ngenerate a subclass of Ext.data.Record configured with information about its constituent fields.
\n
The generated constructor has the same signature as this constructor.
\n\nAn object, the properties of which provide values for the new Record's\nfields. If not specified the defaultValue
\nfor each field will be assigned.
The id of the Record. The id is used by the\nExt.data.Store object which owns the Record to index its collection\nof Records (therefore this id should be unique within each store). If an\nid
is not specified a phantom
\nRecord will be created with an automatically generated id.
Begin an edit. While in edit mode, no events (e.g.. the update
event)\nare relayed to the containing store.\nSee also: endEdit
and cancelEdit
.
Cancels all changes made in the current edit operation.
\nUsually called by the Ext.data.Store which owns the Record.\nCommits all changes made to the Record since either creation, or the last commit operation.
\n\nDevelopers should subscribe to the Ext.data.Store.update event\nto have their code notified of commit operations.
\n\nTrue to skip notification of the owning\nstore of the change (defaults to false)
\nCreates a copy (clone) of this Record.
\nA new Record id, defaults to the id\nof the record being copied. See id
.\nTo generate a phantom record with a new id use:
var rec = record.copy(); // clone the record\nExt.data.Record.id(rec); // automatically generate a unique sequential id\n
\n\nEnd an edit. If any data was modified, the containing store is notified\n(ie, the store's update
event will fire).
Get the value of the named field.
\nThe name of the field to get the value of.
\nThe value of the field.
\nGets a hash of only the fields that have been modified since this Record was created or commited.
\nObject
\nGenerates a sequential id. This method is typically called when a record is created\nand no id has been specified. The returned id takes the form:\n{PREFIX}-{AUTO_ID}.
Ext.data.Record.PREFIX\n(defaults to 'ext-record')
Ext.data.Record.AUTO_ID\n(defaults to 1 initially)
The record being created. The record does not exist, it's a phantom.
\nauto-generated string id, \"ext-record-i++';
\nBy default returns false if any field within the\nrecord configured with Ext.data.Field.allowBlank = false returns\ntrue from an Ext.isempty test.
\nMarks this Record as dirty
. This method\nis used interally when adding phantom
records to a\nwriter enabled store.
Marking a record dirty
causes the phantom to\n\n\n
be returned by Ext.data.Store.getModifiedRecords where it will\nhave a create action composed for it during store save\noperations.
\nUsually called by the Ext.data.Store which owns the Record.\nRejects all changes made to the Record since either creation, or the last commit operation.\nModified fields are reverted to their original values.
\n\nDevelopers should subscribe to the Ext.data.Store.update event\nto have their code notified of reject operations.
\n\nTrue to skip notification of the owning\nstore of the change (defaults to false)
\nSet the named field to the specified value. For example:
\n\n// record has a field named 'firstname'\nvar Employee = Ext.data.Record.create([\n {name: 'firstname'},\n ...\n]);\n\n// update the 2nd record in the store:\nvar rec = myStore.getAt(1);\n\n// set the value (shows dirty flag):\nrec.set('firstname', 'Betty');\n\n// commit the change (removes dirty flag):\nrec.commit();\n\n// update the record in the store, bypass setting dirty flag,\n// and do not store the change in the modified records\nrec.data['firstname'] = 'Wilma'; // updates record, but not the view\nrec.commit(); // updates the view\n
\n\n\nNotes:
The name of the field to set.
\nThe value to set the field to.
\nGenerate a constructor for a specific Record layout.
\nAn Array of Field definition objects.\nThe constructor generated by this method may be used to create new Record instances. The data\nobject must contain properties named after the field\nExt.data.Field.names. Example usage:
\n\n// create a Record constructor from a description of the fields\nvar TopicRecord = Ext.data.Record.create([ // creates a subclass of Ext.data.Record\n {name: 'title', mapping: 'topic_title'},\n {name: 'author', mapping: 'username', allowBlank: false},\n {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},\n {name: 'lastPost', mapping: 'post_time', type: 'date'},\n {name: 'lastPoster', mapping: 'user2'},\n {name: 'excerpt', mapping: 'post_text', allowBlank: false},\n // In the simplest case, if no properties other than name are required,\n // a field definition may consist of just a String for the field name.\n 'signature'\n]);\n\n// create Record instance\nvar myNewRecord = new TopicRecord(\n {\n title: 'Do my job please',\n author: 'noobie',\n totalPosts: 1,\n lastPost: new Date(),\n lastPoster: 'Animal',\n excerpt: 'No way dude!',\n signature: ''\n },\n id // optionally specify the id of the record otherwise one is auto-assigned\n);\nmyStore.add(myNewRecord);\n
\n\nA constructor which is used to create new Records according\nto the definition. The constructor has the same signature as Record.
\n