Commit ab438ddf authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Проверка на лок для сплита и мерже

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60304 954022d7-b5bf-4e40-9824-e11837661b57
parent 9c3d00ff
...@@ -2576,13 +2576,21 @@ asc_docs_api.prototype.CheckBeforeSplitCells = function() ...@@ -2576,13 +2576,21 @@ asc_docs_api.prototype.CheckBeforeSplitCells = function()
} }
asc_docs_api.prototype.MergeCells = function() asc_docs_api.prototype.MergeCells = function()
{ {
this.WordControl.m_oLogicDocument.Create_NewHistoryPoint(); var doc = this.WordControl.m_oLogicDocument;
this.WordControl.m_oLogicDocument.Table_MergeCells(); if(doc.Document_Is_SelectionLocked(changestype_Drawing_Props) === false)
{
this.WordControl.m_oLogicDocument.Create_NewHistoryPoint();
this.WordControl.m_oLogicDocument.Table_MergeCells();
}
} }
asc_docs_api.prototype.SplitCell = function(Cols, Rows) asc_docs_api.prototype.SplitCell = function(Cols, Rows)
{ {
this.WordControl.m_oLogicDocument.Create_NewHistoryPoint(); var doc = this.WordControl.m_oLogicDocument;
this.WordControl.m_oLogicDocument.Table_SplitCell(Cols, Rows); if(doc.Document_Is_SelectionLocked(changestype_Drawing_Props) === false)
{
this.WordControl.m_oLogicDocument.Create_NewHistoryPoint();
this.WordControl.m_oLogicDocument.Table_SplitCell(Cols, Rows);
}
} }
asc_docs_api.prototype.widthTable = function(width){ asc_docs_api.prototype.widthTable = function(width){
......
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