Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
99690b46
Commit
99690b46
authored
May 04, 2016
by
GoshaZotov
Committed by
Alexander.Trofimov
May 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete unused parameter
parent
16ca2ea5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cell/api.js
cell/api.js
+2
-2
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+1
-1
No files found.
cell/api.js
View file @
99690b46
...
@@ -548,9 +548,9 @@ var editor;
...
@@ -548,9 +548,9 @@ var editor;
return
ws
.
changeAutoFilter
(
tableName
,
optionType
,
val
);
return
ws
.
changeAutoFilter
(
tableName
,
optionType
,
val
);
};
};
spreadsheet_api
.
prototype
.
asc_applyAutoFilter
=
function
(
type
,
autoFilterObject
)
{
spreadsheet_api
.
prototype
.
asc_applyAutoFilter
=
function
(
autoFilterObject
)
{
var
ws
=
this
.
wb
.
getWorksheet
();
var
ws
=
this
.
wb
.
getWorksheet
();
ws
.
applyAutoFilter
(
type
,
autoFilterObject
);
ws
.
applyAutoFilter
(
autoFilterObject
);
};
};
spreadsheet_api
.
prototype
.
asc_sortColFilter
=
function
(
type
,
cellId
,
displayName
)
{
spreadsheet_api
.
prototype
.
asc_sortColFilter
=
function
(
type
,
cellId
,
displayName
)
{
...
...
cell/view/WorksheetView.js
View file @
99690b46
...
@@ -11985,7 +11985,7 @@
...
@@ -11985,7 +11985,7 @@
this
.
_isLockedAll
(
onChangeAutoFilterCallback
);
this
.
_isLockedAll
(
onChangeAutoFilterCallback
);
};
};
WorksheetView
.
prototype
.
applyAutoFilter
=
function
(
type
,
autoFilterObject
)
{
WorksheetView
.
prototype
.
applyAutoFilter
=
function
(
autoFilterObject
)
{
var
t
=
this
;
var
t
=
this
;
var
ar
=
t
.
activeRange
.
clone
(
true
);
var
ar
=
t
.
activeRange
.
clone
(
true
);
var
onChangeAutoFilterCallback
=
function
(
isSuccess
)
{
var
onChangeAutoFilterCallback
=
function
(
isSuccess
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment