pve-manager/www/manager/window/NotesEdit.js
Dietmar Maurer e4d554ba9b implement PasswordEdit dialog
And cleanup permission check code.
2012-01-20 12:56:48 +01:00

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();
}
});