extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
22 lines (19 loc) • 429 B
JavaScript
/**
* This class is the base class for all entities in the application.
*/
Ext.define('Ticket.model.Base', {
extend: 'Ext.data.Model',
fields: [{
name: 'id',
type: 'int'
}],
schema: {
namespace: 'Ticket.model',
proxy: {
url: '{prefix}/{entityName:uncapitalize}',
pageParam: '',
startParam: '',
limitParam: ''
}
}
});