PHP Classes

File: src/examples/exampleBundle/Resources/Grid/js/app/store/Generic.js

Recommend this page to a friend!
  Classes of william amed   Raptor 2   src/examples/exampleBundle/Resources/Grid/js/app/store/Generic.js   Download  
File: src/examples/exampleBundle/Resources/Grid/js/app/store/Generic.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 377 bytes
 

Contents

Class file image Download
Ext.define('Grid.store.Generic', { extend: 'Ext.data.Store', model: 'Grid.model.GenericModel', autoLoad:true, autoSync:true, listeners:{ write:function(s,op){ for(var i=0,cant=op.getRecords().length,record=op.getRecords();i<cant;i++){ Dino.msg.info(1,"The element "+record[i].get('id')); } } } });