From 95bba12dec5f85f3f841b3c4dd52482a6c51ce2e Mon Sep 17 00:00:00 2001 From: Aaron Lauterer Date: Mon, 15 Feb 2021 16:26:45 +0100 Subject: [PATCH] window/edit: add option to disable reset button Sometimes the reset button does not make sense and the isCreate option does not fit as well because with it, the submit button will be enabled right away instead of waiting for the form to be valid. Signed-off-by: Aaron Lauterer --- src/window/Edit.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/window/Edit.js b/src/window/Edit.js index 17da01a..53d0e73 100644 --- a/src/window/Edit.js +++ b/src/window/Edit.js @@ -25,6 +25,9 @@ Ext.define('Proxmox.window.Edit', { // set to true if you want an Remove button (instead of Create) isRemove: false, + // set to false, if you don't want the reset button present + showReset: true, + // custom submitText submitText: undefined, @@ -349,7 +352,7 @@ Ext.define('Proxmox.window.Edit', { me.title = Proxmox.Utils.dialog_title(me.subject, me.isCreate, me.isAdd); } - if (me.isCreate) { + if (me.isCreate || !me.showReset) { me.buttons = [submitBtn]; } else { me.buttons = [submitBtn, resetBtn]; -- 2.39.2