pve-manager/www/manager/qemu/NotesEdit.js
2011-08-23 07:40:22 +02:00

25 lines
346 B
JavaScript

Ext.define('PVE.qemu.NotesEdit', {
extend: 'PVE.window.Edit',
initComponent : function() {
var me = this;
Ext.apply(me, {
title: "Notes",
width: 600,
layout: 'fit',
items: {
xtype: 'textarea',
name: 'description',
rows: 7,
value: '',
hideLabel: true
}
});
me.callParent();
me.load();
}
});