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 <a.lauterer@proxmox.com>
This commit is contained in:
parent
fd8ed0d84f
commit
95bba12dec
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user