ucan-ext-js-kitchen-sink
Version:
my-ext-gen-app description for Ext JS app MyExtGenApp
34 lines (33 loc) • 823 B
JavaScript
Ext.define('UCANSink.view.componentDetail.examples.classification.exampleView', {
extend: 'Ext.Container',
xtype: 'ucanclassificationexampleview',
controller: 'ucanclassificationexamplecontroller',
requires: [
'UCAN.classification.src.*',
'Ext.*'
],
viewModel: {
type: 'ucanclassificationexampleviewmodel'
},
items: [
{
xtype: 'classification',
bind: {
availableClassificationTree: '{availableClassificationTree}',
mandatoryCategories: '{mandatoryCategories}',
object: '{exampleObject}',
hideClassifications: '{hideClassifications}',
translator: '{translator}'
}
},
{
xtype: 'displayfield',
bind: {
html: {
bindTo: '{extractClassification}',
deep: true
}
}
}
]
});