/javascripts/lib/docs/source/Record.html

https://bitbucket.org/ksokmesa/sina-asian · HTML · 426 lines · 421 code · 5 blank · 0 comment · 0 complexity · 8a53aeb8c5d4fa9b3282b022965d57df MD5 · raw file

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>The source code</title>
  5. <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  6. <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  7. </head>
  8. <body onload="prettyPrint();">
  9. <pre class="prettyprint lang-js">/*!
  10. * Ext JS Library 3.2.1
  11. * Copyright(c) 2006-2010 Ext JS, Inc.
  12. * licensing@extjs.com
  13. * http://www.extjs.com/license
  14. */
  15. <div id="cls-Ext.data.Record"></div>/**
  16. * @class Ext.data.Record
  17. * <p>Instances of this class encapsulate both Record <em>definition</em> information, and Record
  18. * <em>value</em> information for use in {@link Ext.data.Store} objects, or any code which needs
  19. * to access Records cached in an {@link Ext.data.Store} object.</p>
  20. * <p>Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
  21. * Instances are usually only created by {@link Ext.data.Reader} implementations when processing unformatted data
  22. * objects.</p>
  23. * <p>Note that an instance of a Record class may only belong to one {@link Ext.data.Store Store} at a time.
  24. * In order to copy data from one Store to another, use the {@link #copy} method to create an exact
  25. * copy of the Record, and insert the new instance into the other Store.</p>
  26. * <p>When serializing a Record for submission to the server, be aware that it contains many private
  27. * properties, and also a reference to its owning Store which in turn holds references to its Records.
  28. * This means that a whole Record may not be encoded using {@link Ext.util.JSON.encode}. Instead, use the
  29. * <code>{@link #data}</code> and <code>{@link #id}</code> properties.</p>
  30. * <p>Record objects generated by this constructor inherit all the methods of Ext.data.Record listed below.</p>
  31. * @constructor
  32. * <p>This constructor should not be used to create Record objects. Instead, use {@link #create} to
  33. * generate a subclass of Ext.data.Record configured with information about its constituent fields.<p>
  34. * <p><b>The generated constructor has the same signature as this constructor.</b></p>
  35. * @param {Object} data (Optional) An object, the properties of which provide values for the new Record's
  36. * fields. If not specified the <code>{@link Ext.data.Field#defaultValue defaultValue}</code>
  37. * for each field will be assigned.
  38. * @param {Object} id (Optional) The id of the Record. The id is used by the
  39. * {@link Ext.data.Store} object which owns the Record to index its collection
  40. * of Records (therefore this id should be unique within each store). If an
  41. * <code>id</code> is not specified a <b><code>{@link #phantom}</code></b>
  42. * Record will be created with an {@link #Record.id automatically generated id}.
  43. */
  44. Ext.data.Record = function(data, id){
  45. // if no id, call the auto id method
  46. this.id = (id || id === 0) ? id : Ext.data.Record.id(this);
  47. this.data = data || {};
  48. };
  49. <div id="method-Ext.data.Record-create"></div>/**
  50. * Generate a constructor for a specific Record layout.
  51. * @param {Array} o An Array of <b>{@link Ext.data.Field Field}</b> definition objects.
  52. * The constructor generated by this method may be used to create new Record instances. The data
  53. * object must contain properties named after the {@link Ext.data.Field field}
  54. * <b><tt>{@link Ext.data.Field#name}s</tt></b>. Example usage:<pre><code>
  55. // create a Record constructor from a description of the fields
  56. var TopicRecord = Ext.data.Record.create([ // creates a subclass of Ext.data.Record
  57. {{@link Ext.data.Field#name name}: 'title', {@link Ext.data.Field#mapping mapping}: 'topic_title'},
  58. {name: 'author', mapping: 'username', allowBlank: false},
  59. {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
  60. {name: 'lastPost', mapping: 'post_time', type: 'date'},
  61. {name: 'lastPoster', mapping: 'user2'},
  62. {name: 'excerpt', mapping: 'post_text', allowBlank: false},
  63. // In the simplest case, if no properties other than <tt>name</tt> are required,
  64. // a field definition may consist of just a String for the field name.
  65. 'signature'
  66. ]);
  67. // create Record instance
  68. var myNewRecord = new TopicRecord(
  69. {
  70. title: 'Do my job please',
  71. author: 'noobie',
  72. totalPosts: 1,
  73. lastPost: new Date(),
  74. lastPoster: 'Animal',
  75. excerpt: 'No way dude!',
  76. signature: ''
  77. },
  78. id // optionally specify the id of the record otherwise {@link #Record.id one is auto-assigned}
  79. );
  80. myStore.{@link Ext.data.Store#add add}(myNewRecord);
  81. </code></pre>
  82. * @method create
  83. * @return {Function} A constructor which is used to create new Records according
  84. * to the definition. The constructor has the same signature as {@link #Record}.
  85. * @static
  86. */
  87. Ext.data.Record.create = function(o){
  88. var f = Ext.extend(Ext.data.Record, {});
  89. var p = f.prototype;
  90. p.fields = new Ext.util.MixedCollection(false, function(field){
  91. return field.name;
  92. });
  93. for(var i = 0, len = o.length; i < len; i++){
  94. p.fields.add(new Ext.data.Field(o[i]));
  95. }
  96. f.getField = function(name){
  97. return p.fields.get(name);
  98. };
  99. return f;
  100. };
  101. Ext.data.Record.PREFIX = 'ext-record';
  102. Ext.data.Record.AUTO_ID = 1;
  103. Ext.data.Record.EDIT = 'edit';
  104. Ext.data.Record.REJECT = 'reject';
  105. Ext.data.Record.COMMIT = 'commit';
  106. <div id="method-Ext.data.Record-Record.id"></div>/**
  107. * Generates a sequential id. This method is typically called when a record is {@link #create}d
  108. * and {@link #Record no id has been specified}. The returned id takes the form:
  109. * <tt>&#123;PREFIX}-&#123;AUTO_ID}</tt>.<div class="mdetail-params"><ul>
  110. * <li><b><tt>PREFIX</tt></b> : String<p class="sub-desc"><tt>Ext.data.Record.PREFIX</tt>
  111. * (defaults to <tt>'ext-record'</tt>)</p></li>
  112. * <li><b><tt>AUTO_ID</tt></b> : String<p class="sub-desc"><tt>Ext.data.Record.AUTO_ID</tt>
  113. * (defaults to <tt>1</tt> initially)</p></li>
  114. * </ul></div>
  115. * @param {Record} rec The record being created. The record does not exist, it's a {@link #phantom}.
  116. * @return {String} auto-generated string id, <tt>"ext-record-i++'</tt>;
  117. */
  118. Ext.data.Record.id = function(rec) {
  119. rec.phantom = true;
  120. return [Ext.data.Record.PREFIX, '-', Ext.data.Record.AUTO_ID++].join('');
  121. };
  122. Ext.data.Record.prototype = {
  123. <div id="prop-Ext.data.Record-fields"></div>/**
  124. * <p><b>This property is stored in the Record definition's <u>prototype</u></b></p>
  125. * A MixedCollection containing the defined {@link Ext.data.Field Field}s for this Record. Read-only.
  126. * @property fields
  127. * @type Ext.util.MixedCollection
  128. */
  129. <div id="prop-Ext.data.Record-data"></div>/**
  130. * An object hash representing the data for this Record. Every field name in the Record definition
  131. * is represented by a property of that name in this object. Note that unless you specified a field
  132. * with {@link Ext.data.Field#name name} "id" in the Record definition, this will <b>not</b> contain
  133. * an <tt>id</tt> property.
  134. * @property data
  135. * @type {Object}
  136. */
  137. <div id="prop-Ext.data.Record-id"></div>/**
  138. * The unique ID of the Record {@link #Record as specified at construction time}.
  139. * @property id
  140. * @type {Object}
  141. */
  142. <div id="prop-Ext.data.Record-node"></div>/**
  143. * <p><b>Only present if this Record was created by an {@link Ext.data.XmlReader XmlReader}</b>.</p>
  144. * <p>The XML element which was the source of the data for this Record.</p>
  145. * @property node
  146. * @type {XMLElement}
  147. */
  148. <div id="prop-Ext.data.Record-json"></div>/**
  149. * <p><b>Only present if this Record was created by an {@link Ext.data.ArrayReader ArrayReader} or a {@link Ext.data.JsonReader JsonReader}</b>.</p>
  150. * <p>The Array or object which was the source of the data for this Record.</p>
  151. * @property json
  152. * @type {Array|Object}
  153. */
  154. <div id="prop-Ext.data.Record-dirty"></div>/**
  155. * Readonly flag - true if this Record has been modified.
  156. * @type Boolean
  157. */
  158. dirty : false,
  159. editing : false,
  160. error : null,
  161. <div id="prop-Ext.data.Record-modified"></div>/**
  162. * This object contains a key and value storing the original values of all modified
  163. * fields or is null if no fields have been modified.
  164. * @property modified
  165. * @type {Object}
  166. */
  167. modified : null,
  168. <div id="prop-Ext.data.Record-phantom"></div>/**
  169. * <tt>true</tt> when the record does not yet exist in a server-side database (see
  170. * {@link #markDirty}). Any record which has a real database pk set as its id property
  171. * is NOT a phantom -- it's real.
  172. * @property phantom
  173. * @type {Boolean}
  174. */
  175. phantom : false,
  176. // private
  177. join : function(store){
  178. <div id="prop-Ext.data.Record-store"></div>/**
  179. * The {@link Ext.data.Store} to which this Record belongs.
  180. * @property store
  181. * @type {Ext.data.Store}
  182. */
  183. this.store = store;
  184. },
  185. <div id="method-Ext.data.Record-set"></div>/**
  186. * Set the {@link Ext.data.Field#name named field} to the specified value. For example:
  187. * <pre><code>
  188. // record has a field named 'firstname'
  189. var Employee = Ext.data.Record.{@link #create}([
  190. {name: 'firstname'},
  191. ...
  192. ]);
  193. // update the 2nd record in the store:
  194. var rec = myStore.{@link Ext.data.Store#getAt getAt}(1);
  195. // set the value (shows dirty flag):
  196. rec.set('firstname', 'Betty');
  197. // commit the change (removes dirty flag):
  198. rec.{@link #commit}();
  199. // update the record in the store, bypass setting dirty flag,
  200. // and do not store the change in the {@link Ext.data.Store#getModifiedRecords modified records}
  201. rec.{@link #data}['firstname'] = 'Wilma'; // updates record, but not the view
  202. rec.{@link #commit}(); // updates the view
  203. * </code></pre>
  204. * <b>Notes</b>:<div class="mdetail-params"><ul>
  205. * <li>If the store has a writer and <code>autoSave=true</code>, each set()
  206. * will execute an XHR to the server.</li>
  207. * <li>Use <code>{@link #beginEdit}</code> to prevent the store's <code>update</code>
  208. * event firing while using set().</li>
  209. * <li>Use <code>{@link #endEdit}</code> to have the store's <code>update</code>
  210. * event fire.</li>
  211. * </ul></div>
  212. * @param {String} name The {@link Ext.data.Field#name name of the field} to set.
  213. * @param {String/Object/Array} value The value to set the field to.
  214. */
  215. set : function(name, value){
  216. var encode = Ext.isPrimitive(value) ? String : Ext.encode;
  217. if(encode(this.data[name]) == encode(value)) {
  218. return;
  219. }
  220. this.dirty = true;
  221. if(!this.modified){
  222. this.modified = {};
  223. }
  224. if(this.modified[name] === undefined){
  225. this.modified[name] = this.data[name];
  226. }
  227. this.data[name] = value;
  228. if(!this.editing){
  229. this.afterEdit();
  230. }
  231. },
  232. // private
  233. afterEdit : function(){
  234. if (this.store != undefined && typeof this.store.afterEdit == "function") {
  235. this.store.afterEdit(this);
  236. }
  237. },
  238. // private
  239. afterReject : function(){
  240. if(this.store){
  241. this.store.afterReject(this);
  242. }
  243. },
  244. // private
  245. afterCommit : function(){
  246. if(this.store){
  247. this.store.afterCommit(this);
  248. }
  249. },
  250. <div id="method-Ext.data.Record-get"></div>/**
  251. * Get the value of the {@link Ext.data.Field#name named field}.
  252. * @param {String} name The {@link Ext.data.Field#name name of the field} to get the value of.
  253. * @return {Object} The value of the field.
  254. */
  255. get : function(name){
  256. return this.data[name];
  257. },
  258. <div id="method-Ext.data.Record-beginEdit"></div>/**
  259. * Begin an edit. While in edit mode, no events (e.g.. the <code>update</code> event)
  260. * are relayed to the containing store.
  261. * See also: <code>{@link #endEdit}</code> and <code>{@link #cancelEdit}</code>.
  262. */
  263. beginEdit : function(){
  264. this.editing = true;
  265. this.modified = this.modified || {};
  266. },
  267. <div id="method-Ext.data.Record-cancelEdit"></div>/**
  268. * Cancels all changes made in the current edit operation.
  269. */
  270. cancelEdit : function(){
  271. this.editing = false;
  272. delete this.modified;
  273. },
  274. <div id="method-Ext.data.Record-endEdit"></div>/**
  275. * End an edit. If any data was modified, the containing store is notified
  276. * (ie, the store's <code>update</code> event will fire).
  277. */
  278. endEdit : function(){
  279. this.editing = false;
  280. if(this.dirty){
  281. this.afterEdit();
  282. }
  283. },
  284. <div id="method-Ext.data.Record-reject"></div>/**
  285. * Usually called by the {@link Ext.data.Store} which owns the Record.
  286. * Rejects all changes made to the Record since either creation, or the last commit operation.
  287. * Modified fields are reverted to their original values.
  288. * <p>Developers should subscribe to the {@link Ext.data.Store#update} event
  289. * to have their code notified of reject operations.</p>
  290. * @param {Boolean} silent (optional) True to skip notification of the owning
  291. * store of the change (defaults to false)
  292. */
  293. reject : function(silent){
  294. var m = this.modified;
  295. for(var n in m){
  296. if(typeof m[n] != "function"){
  297. this.data[n] = m[n];
  298. }
  299. }
  300. this.dirty = false;
  301. delete this.modified;
  302. this.editing = false;
  303. if(silent !== true){
  304. this.afterReject();
  305. }
  306. },
  307. <div id="method-Ext.data.Record-commit"></div>/**
  308. * Usually called by the {@link Ext.data.Store} which owns the Record.
  309. * Commits all changes made to the Record since either creation, or the last commit operation.
  310. * <p>Developers should subscribe to the {@link Ext.data.Store#update} event
  311. * to have their code notified of commit operations.</p>
  312. * @param {Boolean} silent (optional) True to skip notification of the owning
  313. * store of the change (defaults to false)
  314. */
  315. commit : function(silent){
  316. this.dirty = false;
  317. delete this.modified;
  318. this.editing = false;
  319. if(silent !== true){
  320. this.afterCommit();
  321. }
  322. },
  323. <div id="method-Ext.data.Record-getChanges"></div>/**
  324. * Gets a hash of only the fields that have been modified since this Record was created or commited.
  325. * @return Object
  326. */
  327. getChanges : function(){
  328. var m = this.modified, cs = {};
  329. for(var n in m){
  330. if(m.hasOwnProperty(n)){
  331. cs[n] = this.data[n];
  332. }
  333. }
  334. return cs;
  335. },
  336. // private
  337. hasError : function(){
  338. return this.error !== null;
  339. },
  340. // private
  341. clearError : function(){
  342. this.error = null;
  343. },
  344. <div id="method-Ext.data.Record-copy"></div>/**
  345. * Creates a copy (clone) of this Record.
  346. * @param {String} id (optional) A new Record id, defaults to the id
  347. * of the record being copied. See <code>{@link #id}</code>.
  348. * To generate a phantom record with a new id use:<pre><code>
  349. var rec = record.copy(); // clone the record
  350. Ext.data.Record.id(rec); // automatically generate a unique sequential id
  351. * </code></pre>
  352. * @return {Record}
  353. */
  354. copy : function(newId) {
  355. return new this.constructor(Ext.apply({}, this.data), newId || this.id);
  356. },
  357. <div id="method-Ext.data.Record-isModified"></div>/**
  358. * Returns <tt>true</tt> if the passed field name has been <code>{@link #modified}</code>
  359. * since the load or last commit.
  360. * @param {String} fieldName {@link Ext.data.Field.{@link Ext.data.Field#name}
  361. * @return {Boolean}
  362. */
  363. isModified : function(fieldName){
  364. return !!(this.modified && this.modified.hasOwnProperty(fieldName));
  365. },
  366. <div id="method-Ext.data.Record-isValid"></div>/**
  367. * By default returns <tt>false</tt> if any {@link Ext.data.Field field} within the
  368. * record configured with <tt>{@link Ext.data.Field#allowBlank} = false</tt> returns
  369. * <tt>true</tt> from an {@link Ext}.{@link Ext#isEmpty isempty} test.
  370. * @return {Boolean}
  371. */
  372. isValid : function() {
  373. return this.fields.find(function(f) {
  374. return (f.allowBlank === false && Ext.isEmpty(this.data[f.name])) ? true : false;
  375. },this) ? false : true;
  376. },
  377. <div id="method-Ext.data.Record-markDirty"></div>/**
  378. * <p>Marks this <b>Record</b> as <code>{@link #dirty}</code>. This method
  379. * is used interally when adding <code>{@link #phantom}</code> records to a
  380. * {@link Ext.data.Store#writer writer enabled store}.</p>
  381. * <br><p>Marking a record <code>{@link #dirty}</code> causes the phantom to
  382. * be returned by {@link Ext.data.Store#getModifiedRecords} where it will
  383. * have a create action composed for it during {@link Ext.data.Store#save store save}
  384. * operations.</p>
  385. */
  386. markDirty : function(){
  387. this.dirty = true;
  388. if(!this.modified){
  389. this.modified = {};
  390. }
  391. this.fields.each(function(f) {
  392. this.modified[f.name] = this.data[f.name];
  393. },this);
  394. }
  395. };
  396. </pre>
  397. </body>
  398. </html>