extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
46 lines (39 loc) • 959 B
JavaScript
Ext.define('KitchenSink.view.tablet.TouchEvents', {
extend: 'KitchenSink.view.TouchEvents',
layout: {
type: 'hbox',
align: 'stretch'
},
items: [
{
docked: 'left',
width: '50%',
id: 'touchinfopanel',
layout: {
type: 'vbox',
align: 'stretch'
},
items: [
{
flex: 3,
scrollable: true,
layout: {
type: 'vbox',
align: 'stretch'
},
items: {
xtype: 'toucheventinfo'
}
},
{
xtype: 'toucheventlogger',
flex: 2
}
]
},
{
xtype: 'toucheventpad',
flex: 1
}
]
});