[Common] make created buttons disabled

This commit is contained in:
Maxim Kadushkin 2018-02-16 02:46:45 +03:00
parent 0fb072b9fa
commit 6d385730b1

View file

@ -408,10 +408,11 @@ define([
getPanel: function (role, config) { getPanel: function (role, config) {
var me = this; var me = this;
function createTitleButton(iconid, slot) { function createTitleButton(iconid, slot, disabled) {
return (new Common.UI.Button({ return (new Common.UI.Button({
cls: 'btn-header', cls: 'btn-header',
iconCls: 'svgicon ' + iconid iconCls: 'svgicon ' + iconid,
disabled: disabled === true
})).render(slot); })).render(slot);
} }
@ -493,9 +494,9 @@ define([
me.btnPrint = createTitleButton('svg-btn-print', $('#slot-btn-dt-print', $html)); me.btnPrint = createTitleButton('svg-btn-print', $('#slot-btn-dt-print', $html));
} }
me.btnSave = createTitleButton('svg-btn-save', $('#slot-btn-dt-save', $html)); me.btnSave = createTitleButton('svg-btn-save', $('#slot-btn-dt-save', $html), true);
me.btnUndo = createTitleButton('svg-btn-undo', $('#slot-btn-dt-undo', $html)); me.btnUndo = createTitleButton('svg-btn-undo', $('#slot-btn-dt-undo', $html), true);
me.btnRedo = createTitleButton('svg-btn-redo', $('#slot-btn-dt-redo', $html)); me.btnRedo = createTitleButton('svg-btn-redo', $('#slot-btn-dt-redo', $html), true);
return $html; return $html;
} }