xtool/contrib/mORMot/SQLite3/Samples/18 - AJAX ExtJS Grid/html5/app/model/Contact.js

19 lines
305 B
JavaScript

Ext.define('ExtMVC.model.Contact', {
extend : 'Ext.data.Model',
idProperty : 'ID',
totalproperty : 'total',
fields : [{
name : 'ID',
type : 'int'
}, {
name : 'TimeD',
type : 'datetime'
}, {
name : 'Name',
type : 'string'
}, {
name : 'Question',
type : 'string'
}
]
});