Skip to content

Commit

Permalink
Merge pull request 'feature/builder-autofilter' (#401) from feature/b…
Browse files Browse the repository at this point in the history
…uilder-autofilter into release/v8.3.0

[se][builder] Support SetAutoFilter method
  • Loading branch information
GoshaZotov committed Dec 10, 2024
2 parents 0495b87 + eb8bc7f commit f821212
Show file tree
Hide file tree
Showing 5 changed files with 560 additions and 7 deletions.
4 changes: 2 additions & 2 deletions cell/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -980,9 +980,9 @@ var editor;
}
};

spreadsheet_api.prototype.asc_addAutoFilter = function(styleName, addFormatTableOptionsObj) {
spreadsheet_api.prototype.asc_addAutoFilter = function(styleName, addFormatTableOptionsObj, range) {
var ws = this.wb.getWorksheet();
return ws.addAutoFilter(styleName, addFormatTableOptionsObj);
return ws.addAutoFilter(styleName, addFormatTableOptionsObj, range);
};

spreadsheet_api.prototype.asc_changeAutoFilter = function(tableName, optionType, val) {
Expand Down
Loading

0 comments on commit f821212

Please sign in to comment.