ucan-ext-js-kitchen-sink
Version:
my-ext-gen-app description for Ext JS app MyExtGenApp
13 lines (11 loc) • 516 B
JavaScript
Ext.define('UCANSink.view.componentDetail.examples.shareComponent.exampleViewController', {
extend: 'Ext.app.ViewController',
alias: 'controller.ucanshareComponentexamplecontroller',
onToggleInfiniteGroupStore: function(field, newValue) {
if (newValue) {
this.getView().down('shareContainer').setAvailableGroups(this.getViewModel().get('availableGroupsBigdata'));
} else {
this.getView().down('shareContainer').setAvailableGroups(this.getViewModel().get('availableGroups'));
}
}
});