diff --git a/apps/spreadsheeteditor/main/app/view/Spellcheck.js b/apps/spreadsheeteditor/main/app/view/Spellcheck.js index e93ce1324..5f5888a07 100644 --- a/apps/spreadsheeteditor/main/app/view/Spellcheck.js +++ b/apps/spreadsheeteditor/main/app/view/Spellcheck.js @@ -54,8 +54,8 @@ define([ '
', '
<%= scope.txtSpelling %>
', '
', - '
', - '
', + '
', + '
', '', '
', '', @@ -90,17 +90,18 @@ define([ this.suggestionList = new Common.UI.ListView({ el: $('#spellcheck-suggestions-list'), emptyText: this.noSuggestions, - store: new Common.UI.DataViewStore() + store: new Common.UI.DataViewStore(), + scrollAlwaysVisible: true }); this.btnChange = new Common.UI.Button({ cls: 'btn-text-split-default', caption: this.textChange, split: true, - width: 105, + width: 110, disabled: true, menu : new Common.UI.Menu({ - style : 'min-width: 105px;', + style : 'min-width: 110px', items: [ { caption: this.textChange, @@ -108,7 +109,8 @@ define([ }, { caption: this.textChangeAll, - value: 1 + value: 1, + disabled: true } ] }) @@ -119,10 +121,10 @@ define([ cls: 'btn-text-split-default', caption: this.textIgnore, split: true, - width: 105, + width: 110, disabled: true, menu : new Common.UI.Menu({ - style : 'min-width: 105px;', + style : 'min-width: 110px;', items: [ { caption: this.textIgnore, @@ -130,7 +132,8 @@ define([ }, { caption: this.textIgnoreAll, - value: 1 + value: 1, + disabled: true } ] })