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

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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57621 954022d7-b5bf-4e40-9824-e11837661b57
parent 45191cfb
...@@ -532,8 +532,13 @@ ...@@ -532,8 +532,13 @@
// При редактировании ячейки не нужно пересылать изменения // При редактировании ячейки не нужно пересылать изменения
if (this.input && false === ws.getCellEditMode()) { if (this.input && false === ws.getCellEditMode()) {
// Сами запретим заходить в строку формул, когда выделен shape // Сами запретим заходить в строку формул, когда выделен shape
this.input.disabled = true === this.lastSendInfoRangeIsSelectOnShape; if (this.lastSendInfoRangeIsSelectOnShape) {
this.input.value = info.text; this.input.disabled = true;
this.input.value = '';
} else {
this.input.disabled = false;
this.input.value = info.text;
}
} }
this.handlers.trigger("asc_onSelectionChanged", info); this.handlers.trigger("asc_onSelectionChanged", info);
}; };
......
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