Commit 2049b53e authored by Alexander.Trofimov's avatar Alexander.Trofimov

_nativeCalculate

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67469 954022d7-b5bf-4e40-9824-e11837661b57
parent f15d8d5b
......@@ -3018,6 +3018,7 @@ var editor;
};
spreadsheet_api.prototype.asc_nativeCalculate = function() {
this.wb._nativeCalculate();
};
spreadsheet_api.prototype.asc_nativePrint = function(_printer, _page) {
......
......@@ -2133,6 +2133,15 @@
return printPagesData;
};
// Вызывать только для нативной печати
WorkbookView.prototype._nativeCalculate = function() {
var item;
for(var i in this.wsViews) {
item = this.wsViews[i];
item._prepareDrawingObjects();
}
};
WorkbookView.prototype._initCommentsToSave = function () {
var isFirst = true;
for (var wsKey in this.wsViews) {
......
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