[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="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">
|
||||
<label style="float:left;line-height:22px;"><%= textGotoPage %></label>
|
||||
<div id="status-goto-page" style="display:inline-block;"></div>
|
||||
|
|
|
@ -1041,7 +1041,7 @@ define([
|
|||
'<table class="main" style="margin: 10px 0;">',
|
||||
'<tr>',
|
||||
'<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>',
|
||||
'</table>',
|
||||
'</div>'
|
||||
|
|
|
@ -221,7 +221,10 @@ define([
|
|||
el : $markup.elementById('#fm-btn-history'),
|
||||
action : 'history',
|
||||
caption : this.btnHistoryCaption,
|
||||
canFocused: false
|
||||
canFocused: false,
|
||||
dataHint: 1,
|
||||
dataHintDirection: 'left-top',
|
||||
dataHintOffset: [2, 14]
|
||||
});
|
||||
|
||||
this.items = [];
|
||||
|
|
|
@ -98,7 +98,10 @@ define([
|
|||
iconCls: 'toolbar__icon btn-sheet-view',
|
||||
caption: me.capBtnSheetView,
|
||||
lock : [_set.lostConnect, _set.coAuth],
|
||||
menu: true
|
||||
menu: true,
|
||||
dataHint : '1',
|
||||
dataHintDirection: 'bottom',
|
||||
dataHintOffset: 'small'
|
||||
});
|
||||
this.lockedControls.push(this.btnSheetView);
|
||||
|
||||
|
@ -107,7 +110,10 @@ define([
|
|||
cls : 'btn-toolbar',
|
||||
iconCls : 'toolbar__icon btn-sheet-view-new',
|
||||
caption : this.textCreate,
|
||||
lock : [_set.coAuth, _set.lostConnect]
|
||||
lock : [_set.coAuth, _set.lostConnect],
|
||||
dataHint : '1',
|
||||
dataHintDirection: 'left',
|
||||
dataHintOffset: 'big'
|
||||
});
|
||||
this.lockedControls.push(this.btnCreateView);
|
||||
Common.Utils.injectComponent($host.find('#slot-createview'), this.btnCreateView);
|
||||
|
@ -117,7 +123,10 @@ define([
|
|||
cls : 'btn-toolbar',
|
||||
iconCls : 'toolbar__icon btn-sheet-view-close',
|
||||
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);
|
||||
Common.Utils.injectComponent($host.find('#slot-closeview'), this.btnCloseView);
|
||||
|
@ -192,7 +201,10 @@ define([
|
|||
this.chZeros = new Common.UI.CheckBox({
|
||||
el: $host.findById('#slot-chk-zeros'),
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue