extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
27 lines (25 loc) • 673 B
JavaScript
Ext.define('KitchenSink.view.binding.SelectionModel', {
extend: 'Ext.app.ViewModel',
alias: 'viewmodel.binding-selection',
stores: {
people: {
model: 'Person',
data: [{
firstName: 'Gareth',
lastName: 'Keenan'
}, {
firstName: 'Tim',
lastName: 'Canterbury'
}, {
firstName: 'Dawn',
lastName: 'Tinsley'
}, {
firstName: 'Neil',
lastName: 'Godwin'
}, {
firstName: 'David',
lastName: 'Brent'
}]
}
}
});