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
c8d4b421
Commit
c8d4b421
authored
Oct 11, 2016
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 33207
parent
6a512d43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
20 deletions
+20
-20
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+20
-20
No files found.
cell/view/WorksheetView.js
View file @
c8d4b421
...
...
@@ -899,10 +899,10 @@
this
.
cleanSelection
();
ar
.
c1
=
startCol
;
ar
.
r1
=
startRow
;
if
(
false
===
ar
.
contains
(
a
r
.
startCol
,
ar
.
startR
ow
))
{
if
(
false
===
ar
.
contains
(
a
ctiveCell
.
col
,
activeCell
.
r
ow
))
{
// Передвинуть первую ячейку в выделении
a
r
.
startC
ol
=
startCol
;
a
r
.
startR
ow
=
startRow
;
a
ctiveCell
.
c
ol
=
startCol
;
a
ctiveCell
.
r
ow
=
startRow
;
}
if
(
true
===
hasNumberInLastRow
&&
true
===
hasNumberInLastColumn
)
{
// Мы расширяем диапазон
...
...
@@ -1038,7 +1038,7 @@
// Ищем первую ячейку с числом
for
(;
r
>=
vr
.
r1
;
--
r
)
{
cell
=
this
.
_getCellTextCache
(
a
r
.
startC
ol
,
r
);
cell
=
this
.
_getCellTextCache
(
a
ctiveCell
.
c
ol
,
r
);
if
(
cell
)
{
// Нашли не пустую ячейку, проверим формат
cellType
=
cell
.
cellType
;
...
...
@@ -1046,11 +1046,11 @@
if
(
isNumberFormat
)
{
// Это число, мы нашли то, что искали
topCell
=
{
c
:
a
r
.
startC
ol
,
r
:
r
,
isFormula
:
cell
.
isFormula
c
:
a
ctiveCell
.
c
ol
,
r
:
r
,
isFormula
:
cell
.
isFormula
};
// смотрим вторую ячейку
if
(
topCell
.
isFormula
&&
r
-
1
>=
vr
.
r1
)
{
cell
=
this
.
_getCellTextCache
(
a
r
.
startC
ol
,
r
-
1
);
cell
=
this
.
_getCellTextCache
(
a
ctiveCell
.
c
ol
,
r
-
1
);
if
(
cell
&&
cell
.
isFormula
)
{
topCell
.
isFormulaSeq
=
true
;
}
...
...
@@ -1060,9 +1060,9 @@
}
}
// Проверим, первой все равно должна быть колонка
if
(
null
===
topCell
||
topCell
.
r
!==
a
r
.
startR
ow
-
1
||
topCell
.
isFormula
&&
!
topCell
.
isFormulaSeq
)
{
if
(
null
===
topCell
||
topCell
.
r
!==
a
ctiveCell
.
r
ow
-
1
||
topCell
.
isFormula
&&
!
topCell
.
isFormulaSeq
)
{
for
(;
c
>=
vr
.
c1
;
--
c
)
{
cell
=
this
.
_getCellTextCache
(
c
,
a
r
.
startR
ow
);
cell
=
this
.
_getCellTextCache
(
c
,
a
ctiveCell
.
r
ow
);
if
(
cell
)
{
// Нашли не пустую ячейку, проверим формат
cellType
=
cell
.
cellType
;
...
...
@@ -1070,7 +1070,7 @@
if
(
isNumberFormat
)
{
// Это число, мы нашли то, что искали
leftCell
=
{
r
:
a
r
.
startR
ow
,
c
:
c
r
:
a
ctiveCell
.
r
ow
,
c
:
c
};
break
;
}
...
...
@@ -1086,11 +1086,11 @@
// Идем влево до первой не числовой ячейки
--
c
;
for
(;
c
>=
0
;
--
c
)
{
cell
=
this
.
_getCellTextCache
(
c
,
a
r
.
startR
ow
);
cell
=
this
.
_getCellTextCache
(
c
,
a
ctiveCell
.
r
ow
);
if
(
!
cell
)
{
// Могут быть еще не закешированные данные
this
.
_addCellTextToCache
(
c
,
a
r
.
startR
ow
);
cell
=
this
.
_getCellTextCache
(
c
,
a
r
.
startR
ow
);
this
.
_addCellTextToCache
(
c
,
a
ctiveCell
.
r
ow
);
cell
=
this
.
_getCellTextCache
(
c
,
a
ctiveCell
.
r
ow
);
if
(
!
cell
)
{
break
;
}
...
...
@@ -1104,9 +1104,9 @@
// Мы ушли чуть дальше
++
c
;
// Диапазон или только 1 ячейка
if
(
a
r
.
startC
ol
-
1
!==
c
)
{
if
(
a
ctiveCell
.
c
ol
-
1
!==
c
)
{
// Диапазон
result
=
new
asc_Range
(
c
,
leftCell
.
r
,
a
r
.
startC
ol
-
1
,
leftCell
.
r
);
result
=
new
asc_Range
(
c
,
leftCell
.
r
,
a
ctiveCell
.
c
ol
-
1
,
leftCell
.
r
);
}
else
{
// Одна ячейка
result
=
new
asc_Range
(
c
,
leftCell
.
r
,
c
,
leftCell
.
r
);
...
...
@@ -1125,11 +1125,11 @@
// Идем вверх до первой не числовой ячейки
--
r
;
for
(;
r
>=
0
;
--
r
)
{
cell
=
this
.
_getCellTextCache
(
a
r
.
startC
ol
,
r
);
cell
=
this
.
_getCellTextCache
(
a
ctiveCell
.
c
ol
,
r
);
if
(
!
cell
)
{
// Могут быть еще не закешированные данные
this
.
_addCellTextToCache
(
a
r
.
startC
ol
,
r
);
cell
=
this
.
_getCellTextCache
(
a
r
.
startC
ol
,
r
);
this
.
_addCellTextToCache
(
a
ctiveCell
.
c
ol
,
r
);
cell
=
this
.
_getCellTextCache
(
a
ctiveCell
.
c
ol
,
r
);
if
(
!
cell
)
{
break
;
}
...
...
@@ -1143,9 +1143,9 @@
// Мы ушли чуть дальше
++
r
;
// Диапазон или только 1 ячейка
if
(
a
r
.
startR
ow
-
1
!==
r
)
{
if
(
a
ctiveCell
.
r
ow
-
1
!==
r
)
{
// Диапазон
result
=
new
asc_Range
(
topCell
.
c
,
r
,
topCell
.
c
,
a
r
.
startR
ow
-
1
);
result
=
new
asc_Range
(
topCell
.
c
,
r
,
topCell
.
c
,
a
ctiveCell
.
r
ow
-
1
);
}
else
{
// Одна ячейка
result
=
new
asc_Range
(
topCell
.
c
,
r
,
topCell
.
c
,
r
);
...
...
@@ -6386,7 +6386,7 @@
WorksheetView
.
prototype
.
_fixSelectionOfMergedCells
=
function
(
fixedRange
)
{
var
tmpSelection
=
this
.
_getSelection
();
var
ar
=
fixedRange
?
fixedRange
:
tmpSelection
.
getLast
(
);
var
ar
=
fixedRange
?
fixedRange
:
(
tmpSelection
?
tmpSelection
.
getLast
()
:
null
);
if
(
!
ar
)
{
return
;
}
...
...
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