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
75a521cc
Commit
75a521cc
authored
Oct 11, 2016
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 33199
parent
2025fe8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
20 deletions
+27
-20
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+27
-20
No files found.
cell/view/WorksheetView.js
View file @
75a521cc
...
...
@@ -6808,35 +6808,42 @@
};
WorksheetView
.
prototype
.
getSelectionMathInfo
=
function
()
{
var
ar
=
this
.
model
.
selectionRange
.
getLast
();
var
range
=
this
.
model
.
getRange3
(
ar
.
r1
,
ar
.
c1
,
ar
.
r2
,
ar
.
c2
);
var
tmp
;
var
oSelectionMathInfo
=
new
asc_CSelectionMathInfo
();
var
sum
=
0
;
var
oExistCells
=
{};
var
t
=
this
;
range
.
_setPropertyNoEmpty
(
null
,
null
,
function
(
cell
,
r
)
{
if
(
!
cell
.
isEmptyTextString
()
&&
t
.
height_1px
<=
t
.
rows
[
r
].
height
)
{
++
oSelectionMathInfo
.
count
;
if
(
CellValueType
.
Number
===
cell
.
getType
())
{
tmp
=
parseFloat
(
cell
.
getValueWithoutFormat
());
if
(
isNaN
(
tmp
))
{
return
;
}
if
(
0
===
oSelectionMathInfo
.
countNumbers
)
{
oSelectionMathInfo
.
min
=
oSelectionMathInfo
.
max
=
tmp
;
}
else
{
oSelectionMathInfo
.
min
=
Math
.
min
(
oSelectionMathInfo
.
min
,
tmp
);
oSelectionMathInfo
.
max
=
Math
.
max
(
oSelectionMathInfo
.
max
,
tmp
);
this
.
model
.
selectionRange
.
ranges
.
forEach
(
function
(
item
)
{
var
tmp
;
var
range
=
t
.
model
.
getRange3
(
item
.
r1
,
item
.
c1
,
item
.
r2
,
item
.
c2
);
range
.
_setPropertyNoEmpty
(
null
,
null
,
function
(
cell
,
r
)
{
var
idCell
=
cell
.
nCol
+
'
-
'
+
cell
.
nRow
;
if
(
!
oExistCells
[
idCell
]
&&
!
cell
.
isEmptyTextString
()
&&
t
.
height_1px
<=
t
.
rows
[
r
].
height
)
{
oExistCells
[
idCell
]
=
true
;
++
oSelectionMathInfo
.
count
;
if
(
CellValueType
.
Number
===
cell
.
getType
())
{
tmp
=
parseFloat
(
cell
.
getValueWithoutFormat
());
if
(
isNaN
(
tmp
))
{
return
;
}
if
(
0
===
oSelectionMathInfo
.
countNumbers
)
{
oSelectionMathInfo
.
min
=
oSelectionMathInfo
.
max
=
tmp
;
}
else
{
oSelectionMathInfo
.
min
=
Math
.
min
(
oSelectionMathInfo
.
min
,
tmp
);
oSelectionMathInfo
.
max
=
Math
.
max
(
oSelectionMathInfo
.
max
,
tmp
);
}
++
oSelectionMathInfo
.
countNumbers
;
sum
+=
tmp
;
}
++
oSelectionMathInfo
.
countNumbers
;
sum
+=
tmp
;
}
}
}
);
});
// Показываем только данные для 2-х или более ячеек (http://bugzilla.onlyoffice.com/show_bug.cgi?id=24115)
if
(
1
<
oSelectionMathInfo
.
countNumbers
)
{
// Мы должны отдавать в формате активной ячейки
var
numFormat
=
range
.
getNumFormat
();
var
numFormat
=
this
.
model
.
getRange3
(
this
.
model
.
selectionRange
.
row
,
this
.
model
.
selectionRange
.
cell
,
this
.
model
.
selectionRange
.
row
,
this
.
model
.
selectionRange
.
cell
).
getNumFormat
();
if
(
Asc
.
c_oAscNumFormatType
.
Time
===
numFormat
.
getType
())
{
// Для времени нужно отдавать в формате [h]:mm:ss (http://bugzilla.onlyoffice.com/show_bug.cgi?id=26271)
numFormat
=
AscCommon
.
oNumFormatCache
.
get
(
'
[h]:mm:ss
'
);
...
...
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