Empty Window
Ext.define(${TM_FILENAME/[\\.]/_/}, {
extend: 'Ext.window.Window',
alias: ['widget.'],
layout: {
type: 'fit'
},
width: 500,
padding: 5,
closable: true,
draggable: true,
resizable: false,
viewConfig: {
listeners: {
render: function () {}
}
},
items: [],
dockedItems: [{
xtype: 'toolbar',
dock: 'bottom',
ui: 'footer',
items: [
'->',
{
xtype: 'button',
locales: {
text: 'locales.guardar'
},
action: 'guardarMedicion',
itemId: 'btnGuardarMedicion'
}
]
}]
});