I have a definition of my model. Here:
Ext.define('KP.model.account.AccountList', { extend: 'Ext.data.Model', alias: 'model.d_AccountList', fields: ['key', 'number', 'personal_account', 'full_name', 'adress', 'pu'] });
So, I want to create this model by an alias . Or define a repository to use this model as follows:
model: 'd_AccountList'
How can i do this? Thanks!
PS: Maybe my nickname is wrong ...
source share