diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js
index b0163ed31..65335e605 100644
--- a/apps/common/main/lib/component/DataView.js
+++ b/apps/common/main/lib/component/DataView.js
@@ -299,7 +299,8 @@ define([
this.cmpEl = $(this.template({
groups: me.groups ? me.groups.toJSON() : null,
style: me.style,
- cls: me.cls
+ cls: me.cls,
+ options: me.options
}));
parentEl.html(this.cmpEl);
@@ -308,7 +309,8 @@ define([
this.cmpEl.html(this.template({
groups: me.groups ? me.groups.toJSON() : null,
style: me.style,
- cls: me.cls
+ cls: me.cls,
+ options: me.options
}));
}
@@ -506,7 +508,8 @@ define([
$(this.el).html(this.template({
groups: this.groups ? this.groups.toJSON() : null,
style: this.style,
- cls: this.cls
+ cls: this.cls,
+ options: this.options
}));
if (!_.isUndefined(this.scroller)) {
diff --git a/apps/common/main/lib/component/ListView.js b/apps/common/main/lib/component/ListView.js
index 67b3824ba..f796d38bb 100644
--- a/apps/common/main/lib/component/ListView.js
+++ b/apps/common/main/lib/component/ListView.js
@@ -59,7 +59,7 @@ define([
},
template: _.template([
- '
'
+ ' data-hint="<%= options.dataHint %>" <% } if (options.dataHintDirection) { %> data-hint-direction="<%= options.dataHintDirection %>" <% } if (options.dataHintOffset) { %> data-hint-offset="<%= options.dataHintOffset %>" <% } %>>
'
].join('')),
onResetItems : function() {
diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy
index 8209b552c..036f0d85a 100644
--- a/apps/documenteditor/main/index.html.deploy
+++ b/apps/documenteditor/main/index.html.deploy
@@ -230,6 +230,7 @@
+
diff --git a/apps/presentationeditor/main/index.html.deploy b/apps/presentationeditor/main/index.html.deploy
index cd5b37de4..96809ee01 100644
--- a/apps/presentationeditor/main/index.html.deploy
+++ b/apps/presentationeditor/main/index.html.deploy
@@ -264,6 +264,7 @@
+
diff --git a/apps/spreadsheeteditor/main/app/view/Spellcheck.js b/apps/spreadsheeteditor/main/app/view/Spellcheck.js
index 0264df328..f5486fa58 100644
--- a/apps/spreadsheeteditor/main/app/view/Spellcheck.js
+++ b/apps/spreadsheeteditor/main/app/view/Spellcheck.js
@@ -60,7 +60,7 @@ define([
'',
'',
'',
- '',
+ '',
'',
'',
'',
@@ -84,7 +84,10 @@ define([
el : $('#spellcheck-current-word'),
allowBlank : true,
validateOnBlur: false,
- disabled: true
+ disabled: true,
+ dataHint: '1',
+ dataHintDirection: 'left',
+ dataHintOffset: 'big'
});
this.buttonNext = new Common.UI.Button({
@@ -92,14 +95,19 @@ define([
style: 'margin-left: 5px;',
cls: 'btn-toolbar bg-white',
iconCls: 'toolbar__icon btn-nextitem',
- hint: this.txtNextTip
+ hint: this.txtNextTip,
+ dataHint: '1',
+ dataHintDirection: 'top'
});
this.suggestionList = new Common.UI.ListView({
el: $('#spellcheck-suggestions-list'),
emptyText: this.noSuggestions,
store: new Common.UI.DataViewStore(),
- scrollAlwaysVisible: true
+ scrollAlwaysVisible: true,
+ dataHint: '1',
+ dataHintDirection: 'left',
+ dataHintOffset: 'big'
});
this.btnChange = new Common.UI.Button({
@@ -121,7 +129,10 @@ define([
value: 1
}
]
- })
+ }),
+ dataHint: '1',
+ dataHintDirection: 'bottom',
+ dataHintOffset: 'big'
});
this.btnIgnore = new Common.UI.Button({
@@ -143,7 +154,10 @@ define([
value: 1
}
]
- })
+ }),
+ dataHint: '1',
+ dataHintDirection: 'bottom',
+ dataHintOffset: 'big'
});
this.cmbDictionaryLanguage = new Common.UI.ComboBox({
@@ -155,7 +169,10 @@ define([
scroller : {
suppressScrollX: true
},
- search: true
+ search: true,
+ dataHint: '1',
+ dataHintDirection: 'bottom',
+ dataHintOffset: 'big'
});
this.btnToDictionary = new Common.UI.Button({
diff --git a/apps/spreadsheeteditor/main/index.html.deploy b/apps/spreadsheeteditor/main/index.html.deploy
index a29e4adb1..82c737204 100644
--- a/apps/spreadsheeteditor/main/index.html.deploy
+++ b/apps/spreadsheeteditor/main/index.html.deploy
@@ -265,6 +265,7 @@
+
diff --git a/apps/spreadsheeteditor/main/index_internal.html.deploy b/apps/spreadsheeteditor/main/index_internal.html.deploy
index 736d2b6f1..d7bc286b3 100644
--- a/apps/spreadsheeteditor/main/index_internal.html.deploy
+++ b/apps/spreadsheeteditor/main/index_internal.html.deploy
@@ -189,6 +189,7 @@
+