diff --git a/apps/common/main/lib/component/ComboBox.js b/apps/common/main/lib/component/ComboBox.js index 78a7b0a22..c50a88aff 100644 --- a/apps/common/main/lib/component/ComboBox.js +++ b/apps/common/main/lib/component/ComboBox.js @@ -302,6 +302,9 @@ define([ if ($list.hasClass('menu-absolute')) { var offset = this.cmpEl.offset(); $list.css({left: offset.left, top: offset.top + this.cmpEl.outerHeight() + 2}); + } else if ($list.hasClass('menu-aligned')) { + var offset = this.cmpEl.offset(); + $list.toggleClass('show-top', offset.top + this.cmpEl.outerHeight() + $list.outerHeight() > Common.Utils.innerHeight()); } }, diff --git a/apps/common/main/resources/less/combobox.less b/apps/common/main/resources/less/combobox.less index cc3cb36b8..31a7f0601 100644 --- a/apps/common/main/resources/less/combobox.less +++ b/apps/common/main/resources/less/combobox.less @@ -130,6 +130,11 @@ .dropdown-menu.menu-absolute { position: fixed; } + + .dropdown-menu.show-top { + top: auto; + bottom: 100%; + } } .open > .combobox.combo-dataview-menu { diff --git a/apps/documenteditor/main/app/controller/Links.js b/apps/documenteditor/main/app/controller/Links.js index 8ab4e9693..661e67e2e 100644 --- a/apps/documenteditor/main/app/controller/Links.js +++ b/apps/documenteditor/main/app/controller/Links.js @@ -82,8 +82,7 @@ define([ onLaunch: function () { this._state = { prcontrolsdisable:undefined, - in_object: false, - in_header: false + in_object: false }; Common.Gateway.on('setactionlink', function (url) { console.log('url with actions: ' + url); @@ -155,7 +154,6 @@ define([ } this._state.prcontrolsdisable = paragraph_locked || header_locked; this._state.in_object = in_image || in_table || in_equation; - this._state.in_header = in_header; var control_props = this.api.asc_IsContentControl() ? this.api.asc_GetContentControlProperties() : null, control_plain = (control_props) ? (control_props.get_ContentControlType()==Asc.c_oAscSdtLevelType.Inline) : false, @@ -463,7 +461,6 @@ define([ me.dlgCrossRefDialog = new DE.Views.CrossReferenceDialog({ api: me.api, crossRefProps: me.crossRefProps, - inHeader: me._state.in_header, handler: function (result, settings) { if (result != 'ok') Common.NotificationCenter.trigger('edit:complete', me.toolbar); diff --git a/apps/documenteditor/main/app/view/CrossReferenceDialog.js b/apps/documenteditor/main/app/view/CrossReferenceDialog.js index d20963f1e..54f46b750 100644 --- a/apps/documenteditor/main/app/view/CrossReferenceDialog.js +++ b/apps/documenteditor/main/app/view/CrossReferenceDialog.js @@ -101,7 +101,6 @@ define([ this.api = options.api; this.options.tpl = _.template(this.template)(this.options); this._locked = false; - this.inHeader = options.inHeader || false; Common.UI.Window.prototype.initialize.call(this, this.options); }, @@ -203,29 +202,12 @@ define([ this._setDefaults(); var me = this; - var onApiFocusObject = function(selectedObjects) { - var i = -1, - in_header = false; - while (++i < selectedObjects.length) { - if (selectedObjects[i].get_ObjectType() === Asc.c_oAscTypeSelectElement.Header) { - in_header = true; - break; - } - } - if (me.inHeader !== in_header) { - me.inHeader = in_header; - var rec = me.cmbReference.getSelectedRecord(); - me.refreshReferenceTypes(me.cmbType.getSelectedRecord(), rec && (!me.inHeader || rec.value !== Asc.c_oAscDocumentRefenceToType.AboveBelow) ? rec.value : undefined); - } - }; var onApiEndCalculate = function() { var rec = me.cmbType.getSelectedRecord(); rec && me.refreshReferences(rec.value); }; - this.api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); this.api.asc_registerCallback('asc_onEndCalculate', onApiEndCalculate); this.on('close', function(obj){ - me.api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject); me.api.asc_unregisterCallback('asc_onEndCalculate', onApiEndCalculate); }); }, @@ -313,7 +295,8 @@ define([ { value: Asc.c_oAscDocumentRefenceToType.Text, displayValue: this.textCaption }, { value: Asc.c_oAscDocumentRefenceToType.OnlyLabelAndNumber, displayValue: this.textLabelNum }, { value: Asc.c_oAscDocumentRefenceToType.OnlyCaptionText, displayValue: this.textOnlyCaption }, - { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum } + { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow } ]; } else { type = record.value; @@ -324,7 +307,8 @@ define([ { value: Asc.c_oAscDocumentRefenceToType.ParaNum, displayValue: this.textParaNum }, { value: Asc.c_oAscDocumentRefenceToType.ParaNumNoContext, displayValue: this.textParaNumNo }, { value: Asc.c_oAscDocumentRefenceToType.ParaNumFullContex, displayValue: this.textParaNumFull }, - { value: Asc.c_oAscDocumentRefenceToType.Text, displayValue: this.textText } + { value: Asc.c_oAscDocumentRefenceToType.Text, displayValue: this.textText }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow } ]; str = this.textWhichPara; break; @@ -334,7 +318,8 @@ define([ { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum }, { value: Asc.c_oAscDocumentRefenceToType.ParaNum, displayValue: this.textHeadingNum }, { value: Asc.c_oAscDocumentRefenceToType.ParaNumNoContext, displayValue: this.textHeadingNumNo }, - { value: Asc.c_oAscDocumentRefenceToType.ParaNumFullContex, displayValue: this.textHeadingNumFull } + { value: Asc.c_oAscDocumentRefenceToType.ParaNumFullContex, displayValue: this.textHeadingNumFull }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow } ]; str = this.textWhichHeading; break; @@ -344,7 +329,8 @@ define([ { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum }, { value: Asc.c_oAscDocumentRefenceToType.ParaNum, displayValue: this.textParaNum }, { value: Asc.c_oAscDocumentRefenceToType.ParaNumNoContext, displayValue: this.textParaNumNo }, - { value: Asc.c_oAscDocumentRefenceToType.ParaNumFullContex, displayValue: this.textParaNumFull } + { value: Asc.c_oAscDocumentRefenceToType.ParaNumFullContex, displayValue: this.textParaNumFull }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow } ]; str = this.textWhichBookmark; break; @@ -352,6 +338,7 @@ define([ arr = [ { value: Asc.c_oAscDocumentRefenceToType.NoteNumber, displayValue: this.textNoteNum }, { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow }, { value: Asc.c_oAscDocumentRefenceToType.NoteNumberFormatted, displayValue: this.textNoteNumForm } ]; str = this.textWhichNote; @@ -360,14 +347,13 @@ define([ arr = [ { value: Asc.c_oAscDocumentRefenceToType.NoteNumber, displayValue: this.textEndNoteNum }, { value: Asc.c_oAscDocumentRefenceToType.PageNum, displayValue: this.textPageNum }, + { value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow }, { value: Asc.c_oAscDocumentRefenceToType.NoteNumberFormatted, displayValue: this.textEndNoteNumForm } ]; str = this.textWhichEndnote; break; } } - if (!this.inHeader) - arr.push({ value: Asc.c_oAscDocumentRefenceToType.AboveBelow, displayValue: this.textAboveBelow }); this.cmbReference.setData(arr); var rec = this.cmbReference.store.findWhere({value: currentRef}); diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 8bd418ea4..1e91ff1f0 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -262,13 +262,17 @@ define([ '