Commit 765ec274 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

рефакторинг

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57585 954022d7-b5bf-4e40-9824-e11837661b57
parent a2cd2078
...@@ -165,7 +165,7 @@ ...@@ -165,7 +165,7 @@
this.styleName = null; this.styleName = null;
this.numFormatType = null; this.numFormatType = null;
this.angle = null; this.angle = null;
this.cleanFilter = null; this.clearFilter = null;
} }
asc_CCellInfo.prototype = { asc_CCellInfo.prototype = {
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
asc_getStyleName: function () { return this.styleName; }, asc_getStyleName: function () { return this.styleName; },
asc_getNumFormatType: function(){ return this.numFormatType; }, asc_getNumFormatType: function(){ return this.numFormatType; },
asc_getAngle: function () { return this.angle; }, asc_getAngle: function () { return this.angle; },
asc_getCleanFilter: function () { return this.cleanFilter; } asc_getClearFilter: function () { return this.clearFilter; }
}; };
window["Asc"].asc_CCellInfo = window["Asc"]["asc_CCellInfo"] = asc_CCellInfo; window["Asc"].asc_CCellInfo = window["Asc"]["asc_CCellInfo"] = asc_CCellInfo;
......
...@@ -6449,7 +6449,7 @@ ...@@ -6449,7 +6449,7 @@
{ {
var checkApplyFilterOrSort = this.autoFilters.checkApplyFilterOrSort(); var checkApplyFilterOrSort = this.autoFilters.checkApplyFilterOrSort();
cell_info.isFormatTable = checkApplyFilterOrSort.isAutoFilter; cell_info.isFormatTable = checkApplyFilterOrSort.isAutoFilter;
cell_info.cleanFilter = checkApplyFilterOrSort.isFilterColumns; cell_info.clearFilter = checkApplyFilterOrSort.isFilterColumns;
} }
else else
{ {
...@@ -6457,14 +6457,14 @@ ...@@ -6457,14 +6457,14 @@
{ {
cell_info.isFormatTable = true; cell_info.isFormatTable = true;
if(this.autoFilters.checkApplyFilterOrSort(tablePartsOptions.id)) if(this.autoFilters.checkApplyFilterOrSort(tablePartsOptions.id))
cell_info.cleanFilter = true; cell_info.clearFilter = true;
else else
cell_info.cleanFilter = null; cell_info.clearFilter = null;
} }
else else
{ {
cell_info.isFormatTable = null; cell_info.isFormatTable = null;
cell_info.cleanFilter = null; cell_info.clearFilter = null;
} }
} }
......
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