[DE SSE] Add missed alt-key hints
This commit is contained in:
parent
b0160dc0fe
commit
0745e1a040
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<div class="statusbar" style="display:table;">
|
<div class="statusbar" style="display:table;">
|
||||||
<div class="status-group dropup">
|
<div class="status-group dropup">
|
||||||
<label id="label-pages" class="status-label dropdown-toggle" style="margin-left: 40px;" data-toggle="dropdown"><%= textPageNumber %></label>
|
<label id="label-pages" class="status-label dropdown-toggle" style="margin-left: 40px;" data-toggle="dropdown" data-hint="0" data-hint-direction="top"><%= textPageNumber %></label>
|
||||||
<div id="status-goto-box" class="dropdown-menu">
|
<div id="status-goto-box" class="dropdown-menu">
|
||||||
<label style="float:left;line-height:22px;"><%= textGotoPage %></label>
|
<label style="float:left;line-height:22px;"><%= textGotoPage %></label>
|
||||||
<div id="status-goto-page" style="display:inline-block;"></div>
|
<div id="status-goto-page" style="display:inline-block;"></div>
|
||||||
|
|
|
@ -1041,7 +1041,7 @@ define([
|
||||||
'<table class="main" style="margin: 10px 0;">',
|
'<table class="main" style="margin: 10px 0;">',
|
||||||
'<tr>',
|
'<tr>',
|
||||||
'<td class="left"></td>',
|
'<td class="left"></td>',
|
||||||
'<td class="right"><button id="fminfo-btn-apply" class="btn normal dlg-btn primary" data-hint="2" data-hint-direction="bottom" data-hint-offset="medium"><%= scope.okButtonText %></button></td>',
|
'<td class="right"><button id="fminfo-btn-apply" class="btn normal dlg-btn primary" data-hint="2" data-hint-direction="bottom" data-hint-offset="big"><%= scope.okButtonText %></button></td>',
|
||||||
'</tr>',
|
'</tr>',
|
||||||
'</table>',
|
'</table>',
|
||||||
'</div>'
|
'</div>'
|
||||||
|
|
|
@ -221,7 +221,10 @@ define([
|
||||||
el : $markup.elementById('#fm-btn-history'),
|
el : $markup.elementById('#fm-btn-history'),
|
||||||
action : 'history',
|
action : 'history',
|
||||||
caption : this.btnHistoryCaption,
|
caption : this.btnHistoryCaption,
|
||||||
canFocused: false
|
canFocused: false,
|
||||||
|
dataHint: 1,
|
||||||
|
dataHintDirection: 'left-top',
|
||||||
|
dataHintOffset: [2, 14]
|
||||||
});
|
});
|
||||||
|
|
||||||
this.items = [];
|
this.items = [];
|
||||||
|
|
|
@ -98,7 +98,10 @@ define([
|
||||||
iconCls: 'toolbar__icon btn-sheet-view',
|
iconCls: 'toolbar__icon btn-sheet-view',
|
||||||
caption: me.capBtnSheetView,
|
caption: me.capBtnSheetView,
|
||||||
lock : [_set.lostConnect, _set.coAuth],
|
lock : [_set.lostConnect, _set.coAuth],
|
||||||
menu: true
|
menu: true,
|
||||||
|
dataHint : '1',
|
||||||
|
dataHintDirection: 'bottom',
|
||||||
|
dataHintOffset: 'small'
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.btnSheetView);
|
this.lockedControls.push(this.btnSheetView);
|
||||||
|
|
||||||
|
@ -107,7 +110,10 @@ define([
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
iconCls : 'toolbar__icon btn-sheet-view-new',
|
iconCls : 'toolbar__icon btn-sheet-view-new',
|
||||||
caption : this.textCreate,
|
caption : this.textCreate,
|
||||||
lock : [_set.coAuth, _set.lostConnect]
|
lock : [_set.coAuth, _set.lostConnect],
|
||||||
|
dataHint : '1',
|
||||||
|
dataHintDirection: 'left',
|
||||||
|
dataHintOffset: 'big'
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.btnCreateView);
|
this.lockedControls.push(this.btnCreateView);
|
||||||
Common.Utils.injectComponent($host.find('#slot-createview'), this.btnCreateView);
|
Common.Utils.injectComponent($host.find('#slot-createview'), this.btnCreateView);
|
||||||
|
@ -117,7 +123,10 @@ define([
|
||||||
cls : 'btn-toolbar',
|
cls : 'btn-toolbar',
|
||||||
iconCls : 'toolbar__icon btn-sheet-view-close',
|
iconCls : 'toolbar__icon btn-sheet-view-close',
|
||||||
caption : this.textClose,
|
caption : this.textClose,
|
||||||
lock : [_set.sheetView, _set.coAuth, _set.lostConnect]
|
lock : [_set.sheetView, _set.coAuth, _set.lostConnect],
|
||||||
|
dataHint : '1',
|
||||||
|
dataHintDirection: 'left',
|
||||||
|
dataHintOffset: 'big'
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.btnCloseView);
|
this.lockedControls.push(this.btnCloseView);
|
||||||
Common.Utils.injectComponent($host.find('#slot-closeview'), this.btnCloseView);
|
Common.Utils.injectComponent($host.find('#slot-closeview'), this.btnCloseView);
|
||||||
|
@ -192,7 +201,10 @@ define([
|
||||||
this.chZeros = new Common.UI.CheckBox({
|
this.chZeros = new Common.UI.CheckBox({
|
||||||
el: $host.findById('#slot-chk-zeros'),
|
el: $host.findById('#slot-chk-zeros'),
|
||||||
labelText: this.textZeros,
|
labelText: this.textZeros,
|
||||||
lock : [_set.sheetLock, _set.lostConnect, _set.coAuth]
|
lock : [_set.sheetLock, _set.lostConnect, _set.coAuth],
|
||||||
|
dataHint : '1',
|
||||||
|
dataHintDirection: 'left',
|
||||||
|
dataHintOffset: 'small'
|
||||||
});
|
});
|
||||||
this.lockedControls.push(this.chZeros);
|
this.lockedControls.push(this.chZeros);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue