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

Сброс состояния редактора (иначе при втором входе в формулу, мы не присылали эвент)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57362 954022d7-b5bf-4e40-9824-e11837661b57
parent f887fc01
...@@ -122,8 +122,8 @@ ...@@ -122,8 +122,8 @@
this.isOpened = false; this.isOpened = false;
this.callTopLineMouseup = false; this.callTopLineMouseup = false;
this.lastKeyCode = undefined; this.lastKeyCode = undefined;
this.m_nEditorState = null; // Состояние редактора this.m_nEditorState = c_oAscCellEditorState.editEnd; // Состояние редактора
this.isUpdateValue = true; // Обновлять ли состояние строки при вводе в TextArea this.isUpdateValue = true; // Обновлять ли состояние строки при вводе в TextArea
// Функции, которые будем отключать // Функции, которые будем отключать
this.fKeyDown = null; this.fKeyDown = null;
...@@ -294,6 +294,8 @@ ...@@ -294,6 +294,8 @@
// delete autoComplete // delete autoComplete
this.objAutoComplete = {}; this.objAutoComplete = {};
// Сброс состояния редактора
this.m_nEditorState = c_oAscCellEditorState.editEnd;
t.handlers.trigger("closed"); t.handlers.trigger("closed");
return true; return true;
}; };
......
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