Commit c74d3928 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

На сортировку делаем lock свойств листа

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48926 954022d7-b5bf-4e40-9824-e11837661b57
parent 1120e960
...@@ -9289,8 +9289,15 @@ ...@@ -9289,8 +9289,15 @@
}, },
sortColFilter: function (type,cellId) { sortColFilter: function (type,cellId) {
var t = this;
var ar = this.activeRange.clone(true); var ar = this.activeRange.clone(true);
this.autoFilters.sortColFilter(type, cellId, this, ar); var onChangeAutoFilterCallback = function (isSuccess) {
if (false === isSuccess)
return;
return t.autoFilters.sortColFilter(type, cellId, t, ar);
};
this._isLockedAll (onChangeAutoFilterCallback);
}, },
getAddFormatTableOptions: function(nameOption) getAddFormatTableOptions: function(nameOption)
......
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