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
ac95dd7e
Commit
ac95dd7e
authored
Oct 18, 2016
by
GoshaZotov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 33253
parent
d8118033
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
cell/model/autofilters.js
cell/model/autofilters.js
+2
-2
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+1
-1
No files found.
cell/model/autofilters.js
View file @
ac95dd7e
...
...
@@ -1943,14 +1943,14 @@
return
false
;
},
isStartRangeContainIntoTableOrFilter
:
function
(
range
)
isStartRangeContainIntoTableOrFilter
:
function
(
activeCell
)
{
var
res
=
null
;
var
worksheet
=
this
.
worksheet
;
var
tableParts
=
worksheet
.
TableParts
;
var
startRange
=
new
Asc
.
Range
(
range
.
startCol
,
range
.
startRow
,
range
.
startCol
,
range
.
startR
ow
);
var
startRange
=
new
Asc
.
Range
(
activeCell
.
col
,
activeCell
.
row
,
activeCell
.
col
,
activeCell
.
r
ow
);
for
(
var
i
=
0
;
i
<
tableParts
.
length
;
i
++
)
{
...
...
cell/view/WorksheetView.js
View file @
ac95dd7e
...
...
@@ -11664,7 +11664,7 @@
var
activeCell
=
this
.
model
.
selectionRange
.
activeCell
.
clone
();
var
ar
=
this
.
model
.
selectionRange
.
getLast
().
clone
();
var
isStartRangeIntoFilterOrTable
=
t
.
model
.
autoFilters
.
isStartRangeContainIntoTableOrFilter
(
a
r
);
var
isStartRangeIntoFilterOrTable
=
t
.
model
.
autoFilters
.
isStartRangeContainIntoTableOrFilter
(
a
ctiveCell
);
var
isApplyAutoFilter
=
null
,
isAddAutoFilter
=
null
,
cellId
=
null
,
isFromatTable
=
null
;
if
(
null
!==
isStartRangeIntoFilterOrTable
)
//into autofilter or format table
{
...
...
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