Commit 79204212 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

add c_oAscAsyncAction.DownloadMerge

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@61795 954022d7-b5bf-4e40-9824-e11837661b57
parent 42b68235
...@@ -51,7 +51,8 @@ var c_oAscAsyncAction = { ...@@ -51,7 +51,8 @@ var c_oAscAsyncAction = {
Recalc : 10, // пересчет формул Recalc : 10, // пересчет формул
SlowOperation : 11, // медленная операция SlowOperation : 11, // медленная операция
LoadTheme : 12, // загрузка темы LoadTheme : 12, // загрузка темы
MailMergeLoadFile : 13 // загрузка файла для mail merge MailMergeLoadFile : 13, // загрузка файла для mail merge
DownloadMerge : 14 // cкачать файл с mail merge
}; };
// Режимы отрисовки // Режимы отрисовки
......
...@@ -2308,7 +2308,7 @@ asc_docs_api.prototype.asc_DownloadAs = function(typeFile) {//передаем ...@@ -2308,7 +2308,7 @@ asc_docs_api.prototype.asc_DownloadAs = function(typeFile) {//передаем
asc_docs_api.prototype.asc_DownloadAsMailMerge = function(typeFile, StartIndex, EndIndex, bIsDownload) { asc_docs_api.prototype.asc_DownloadAsMailMerge = function(typeFile, StartIndex, EndIndex, bIsDownload) {
var oDocumentMailMerge = this.WordControl.m_oLogicDocument.Get_MailMergedDocument(StartIndex, EndIndex); var oDocumentMailMerge = this.WordControl.m_oLogicDocument.Get_MailMergedDocument(StartIndex, EndIndex);
if(null != oDocumentMailMerge){ if(null != oDocumentMailMerge){
var actionType = c_oAscAsyncAction.DownloadAs; var actionType = c_oAscAsyncAction.DownloadMerge;
if(bIsDownload) if(bIsDownload)
this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, actionType); this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, actionType);
var t = this; var t = this;
......
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