ui: improve media pool config grid - add comment field

This commit is contained in:
Dietmar Maurer
2021-03-02 11:43:25 +01:00
parent db04d10d14
commit 6c92449702
2 changed files with 80 additions and 47 deletions

View File

@ -19,50 +19,66 @@ Ext.define('PBS.TapeManagement.PoolEditWindow', {
return { };
},
items: [
{
fieldLabel: gettext('Name'),
name: 'name',
xtype: 'pmxDisplayEditField',
renderer: Ext.htmlEncode,
allowBlank: false,
cbind: {
editable: '{isCreate}',
items: {
xtype: 'inputpanel',
column1: [
{
fieldLabel: gettext('Name'),
name: 'name',
xtype: 'pmxDisplayEditField',
renderer: Ext.htmlEncode,
allowBlank: false,
cbind: {
editable: '{isCreate}',
},
},
},
{
fieldLabel: gettext('Allocation'),
xtype: 'pbsAllocationSelector',
name: 'allocation',
skipEmptyText: true,
allowBlank: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
{
fieldLabel: gettext('Allocation'),
xtype: 'pbsAllocationSelector',
name: 'allocation',
skipEmptyText: true,
allowBlank: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
},
},
},
{
fieldLabel: gettext('Retention'),
xtype: 'pbsRetentionSelector',
name: 'retention',
skipEmptyText: true,
allowBlank: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
{
fieldLabel: gettext('Retention'),
xtype: 'pbsRetentionSelector',
name: 'retention',
skipEmptyText: true,
allowBlank: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
},
},
},
{
fieldLabel: gettext('Encryption Key'),
xtype: 'pbsTapeKeySelector',
name: 'encrypt',
allowBlank: true,
skipEmptyText: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
},
},
],
});
],
column2: [
{
fieldLabel: gettext('Encryption Key'),
xtype: 'pbsTapeKeySelector',
name: 'encrypt',
allowBlank: true,
skipEmptyText: true,
autoSelect: false,
cbind: {
deleteEmpty: '{!isCreate}',
},
},
],
columnB: [
{
fieldLabel: gettext('Comment'),
xtype: 'proxmoxtextfield',
name: 'comment',
cbind: {
deleteEmpty: '{!isCreate}',
},
},
],
},
});