UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

17 lines (15 loc) 416 B
/** * This ViewModel provides data for the ChildSession view. */ Ext.define('KitchenSink.view.binding.ChildSessionModel', { extend: 'Ext.app.ViewModel', alias: 'viewmodel.binding.childsession', stores: { // Define a store of Company records that links to the Session. companies: { model: 'Company', autoLoad: true, session: true } } });