fix #2017: add help button to storage input panels
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
a15bd00cf0
commit
96988dfae0
@ -80,6 +80,8 @@ Ext.define('PVE.storage.CIFSScan', {
|
||||
Ext.define('PVE.storage.CIFSInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_cifs',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
@ -3,6 +3,8 @@ Ext.define('PVE.storage.CephFSInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
controller: 'cephstorage',
|
||||
|
||||
onlineHelp: 'storage_cephfs',
|
||||
|
||||
viewModel: {
|
||||
type: 'cephstorage'
|
||||
},
|
||||
|
@ -1,6 +1,8 @@
|
||||
Ext.define('PVE.storage.DirInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_directory',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
@ -60,6 +60,8 @@ Ext.define('PVE.storage.GlusterFsScan', {
|
||||
Ext.define('PVE.storage.GlusterFsInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_glusterfs',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
@ -59,6 +59,8 @@ Ext.define('PVE.storage.IScsiScan', {
|
||||
Ext.define('PVE.storage.IScsiInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_open_iscsi',
|
||||
|
||||
onGetValues: function(values) {
|
||||
var me = this;
|
||||
|
||||
|
@ -86,6 +86,8 @@ Ext.define('PVE.storage.BaseStorageSelector', {
|
||||
Ext.define('PVE.storage.LVMInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_lvm',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
@ -94,6 +94,8 @@ Ext.define('PVE.storage.BaseVGSelector', {
|
||||
Ext.define('PVE.storage.LvmThinInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_lvmthin',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
@ -60,6 +60,8 @@ Ext.define('PVE.storage.NFSScan', {
|
||||
Ext.define('PVE.storage.NFSInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_nfs',
|
||||
|
||||
onGetValues: function(values) {
|
||||
var me = this;
|
||||
|
||||
|
@ -77,6 +77,8 @@ Ext.define('PVE.storage.RBDInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
controller: 'cephstorage',
|
||||
|
||||
onlineHelp: 'ceph_rados_block_devices',
|
||||
|
||||
viewModel: {
|
||||
type: 'cephstorage'
|
||||
},
|
||||
|
@ -37,6 +37,8 @@ Ext.define('PVE.storage.ZFSPoolSelector', {
|
||||
Ext.define('PVE.storage.ZFSPoolInputPanel', {
|
||||
extend: 'PVE.panel.StorageBase',
|
||||
|
||||
onlineHelp: 'storage_zfspool',
|
||||
|
||||
initComponent : function() {
|
||||
var me = this;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user