Commit 1bd286e4 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Добавлена функция для получения значения базы данных рассылки по номеру и ключу.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62604 954022d7-b5bf-4e40-9824-e11837661b57
parent f36a91e8
......@@ -14175,6 +14175,13 @@ CDocument.prototype.Set_HightlightMailMergeFields = function(Value)
editor.sync_HighlightMailMergeFields(this.MailMergeFieldsHighlight);
}
};
CDocument.prototype.Get_MailMergeFileldValue = function(nIndex, sName)
{
if (null === this.MailMergeMap)
return null;
return this.MailMergeMap[nIndex][sName];
};
CDocument.prototype.Compare_DrawingsLogicPositions = function(Drawing1, Drawing2)
{
var ParentPara1 = Drawing1.Get_Paragraph();
......
......@@ -7412,6 +7412,10 @@ asc_docs_api.prototype.asc_sendMailMergeData = function(oData)
oThis.sync_EndAction(c_oAscAsyncActionType.BlockInteraction, actionType);
});
};
asc_docs_api.prototype.asc_GetMailMergeFiledValue = function(nIndex, sName)
{
return editor.WordControl.m_oLogicDocument.Get_MailMergeFileldValue(nIndex, sName);
};
asc_docs_api.prototype.asc_stopSaving = function () {
this.waitSave = true;
};
......
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