Commit 9d91c15b authored by Sergey.Konovalov's avatar Sergey.Konovalov

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 5237b37c
......@@ -51,7 +51,8 @@ var c_oAscAsyncAction = {
Recalc : 10, // пересчет формул
SlowOperation : 11, // медленная операция
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) {//передаем
asc_docs_api.prototype.asc_DownloadAsMailMerge = function(typeFile, StartIndex, EndIndex, bIsDownload) {
var oDocumentMailMerge = this.WordControl.m_oLogicDocument.Get_MailMergedDocument(StartIndex, EndIndex);
if(null != oDocumentMailMerge){
var actionType = c_oAscAsyncAction.DownloadAs;
var actionType = c_oAscAsyncAction.DownloadMerge;
if(bIsDownload)
this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, actionType);
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