Commit e8a18742 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@54529 954022d7-b5bf-4e40-9824-e11837661b57
parent 58698483
...@@ -1448,11 +1448,8 @@ asc_CCellCommentator.prototype = { ...@@ -1448,11 +1448,8 @@ asc_CCellCommentator.prototype = {
oComment.setId(); oComment.setId();
if (!oComment.bDocument) { if (!oComment.bDocument) {
var selectedCell = _this.worksheet.getSelectedRange(); oComment.asc_putCol(_this.worksheet.getSelectedColumnIndex());
var oFirst = selectedCell.getFirst(); oComment.asc_putRow(_this.worksheet.getSelectedRowIndex());
oComment.asc_putCol(oFirst.col - 1);
oComment.asc_putRow(oFirst.row - 1);
if ((oComment.nCol != null) && (oComment.nRow != null)) { if ((oComment.nCol != null) && (oComment.nRow != null)) {
var cellAddress = new CellAddress(oComment.nRow, oComment.nCol, 0); var cellAddress = new CellAddress(oComment.nRow, oComment.nCol, 0);
...@@ -1463,7 +1460,6 @@ asc_CCellCommentator.prototype = { ...@@ -1463,7 +1460,6 @@ asc_CCellCommentator.prototype = {
function callbackFunc(result) { function callbackFunc(result) {
if ( !result ) { if ( !result ) {
_this.worksheet.model.workbook.handlers.trigger("asc_onLockComment", oComment.asc_getId(), oComment.asc_getUserId()); _this.worksheet.model.workbook.handlers.trigger("asc_onLockComment", oComment.asc_getId(), oComment.asc_getUserId());
return;
} }
else { else {
_this.worksheet.model.workbook.handlers.trigger("asc_onUnLockComment", oComment.asc_getId()); _this.worksheet.model.workbook.handlers.trigger("asc_onUnLockComment", oComment.asc_getId());
......
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