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
33c21deb
Commit
33c21deb
authored
Apr 29, 2016
by
GoshaZotov
Committed by
Alexander.Trofimov
May 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add warning for Bug #32333
parent
b304cd10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
cell/apiDefines.js
cell/apiDefines.js
+3
-1
cell/view/WorksheetView.js
cell/view/WorksheetView.js
+7
-0
No files found.
cell/apiDefines.js
View file @
33c21deb
...
...
@@ -13,7 +13,8 @@ function (window, undefined) {
var
CColor
=
AscCommon
.
CColor
;
var
c_oAscConfirm
=
{
ConfirmReplaceRange
:
0
ConfirmReplaceRange
:
0
,
ConfirmPutMergeRange
:
1
};
var
c_oAscAlignType
=
{
...
...
@@ -293,6 +294,7 @@ var c_oAscPopUpSelectorType = {
window
[
'
Asc
'
][
'
c_oAscConfirm
'
]
=
window
[
'
Asc
'
].
c_oAscConfirm
=
c_oAscConfirm
;
prot
=
c_oAscConfirm
;
prot
[
'
ConfirmReplaceRange
'
]
=
prot
.
ConfirmReplaceRange
;
prot
[
'
ConfirmPutMergeRange
'
]
=
prot
.
ConfirmPutMergeRange
;
window
[
'
Asc
'
][
'
c_oAscMergeOptions
'
]
=
window
[
'
Asc
'
].
c_oAscMergeOptions
=
c_oAscMergeOptions
;
prot
=
c_oAscMergeOptions
;
prot
[
'
Unmerge
'
]
=
prot
.
Unmerge
;
...
...
cell/view/WorksheetView.js
View file @
33c21deb
...
...
@@ -8840,6 +8840,13 @@
// Вызовем на всякий случай, т.к. мы можем уже обновиться из-за формул ToDo возможно стоит убрать это в дальнейшем (но нужна переработка формул) - http://bugzserver/show_bug.cgi?id=24505
t
.
_updateSelectionNameAndInfo
();
if
(
null
!==
t
.
model
.
getRange3
(
arnTo
.
r1
,
arnTo
.
c1
,
arnTo
.
r2
,
arnTo
.
c2
).
hasMerged
())
{
t
.
model
.
workbook
.
handlers
.
trigger
(
"
asc_onConfirmAction
"
,
Asc
.
c_oAscConfirm
.
ConfirmPutMergeRange
,
function
()
{
t
.
model
.
autoFilters
.
unmergeTablesAfterMove
(
arnTo
);
});
}
};
if
(
t
.
model
.
autoFilters
.
_searchFiltersInRange
(
arnFrom
)
)
{
...
...
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