mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 11:38:01 +00:00
25 lines
357 B
JavaScript
25 lines
357 B
JavaScript
Ext.define('PVE.window.NotesEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
Ext.apply(me, {
|
|
title: gettext('Notes'),
|
|
width: 600,
|
|
layout: 'fit',
|
|
items: {
|
|
xtype: 'textarea',
|
|
name: 'description',
|
|
rows: 7,
|
|
value: '',
|
|
hideLabel: true
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|