diff --git a/apps/documenteditor/main/app/template/StatusBar.template b/apps/documenteditor/main/app/template/StatusBar.template index 655483e90..bcf70b81d 100644 --- a/apps/documenteditor/main/app/template/StatusBar.template +++ b/apps/documenteditor/main/app/template/StatusBar.template @@ -1,7 +1,7 @@
- + ' diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index d5f967fd2..0eca61fea 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -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 = []; diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index 017fe8dc7..269283802 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -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);