Commit f21d4bab authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил баг http://bugzserver/show_bug.cgi?id=24505

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57655 954022d7-b5bf-4e40-9824-e11837661b57
parent 747b95a4
......@@ -1500,8 +1500,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
this.CoAuthoringApi.onMessage = function (e) { t.handlers.trigger("asc_onCoAuthoringChatReceiveMessage", e); };
this.CoAuthoringApi.onConnectionStateChanged = function (e) { t.handlers.trigger("asc_onConnectionStateChanged", e); };
this.CoAuthoringApi.onLocksAcquired = function (e) {
if ( 2 != e["state"] )
{
if (2 != e["state"]) {
var elementValue = e["blockValue"];
var lockElem = t.collaborativeEditing.getLockByElem (elementValue, c_oAscLockTypes.kLockTypeOther);
if (null === lockElem) {
......
......@@ -7845,6 +7845,11 @@
t.startCellMoveRange = null;
// Тут будет отрисовка select-а
t._updateCellsRange(arnFrom);
// Вызовем на всякий случай, т.к. мы можем уже обновиться из-за формул ToDo возможно стоит убрать это в дальнейшем (но нужна переработка формул) - http://bugzserver/show_bug.cgi?id=24505
t.handlers.trigger("selectionNameChanged", t.getSelectionName(/*bRangeText*/false));
t.handlers.trigger("selectionChanged", t.getSelectionInfo());
t.handlers.trigger("selectionMathInfoChanged", t.getSelectionMathInfo());
};
this._isLockedCells ([arnFrom, arnTo], null, onApplyMoveRangeHandleCallback);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment