Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
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
web-apps
Commits
a67e3d77
Commit
a67e3d77
authored
Dec 27, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Fix Bug 33733.
parent
b2c3707a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
+3
-0
apps/spreadsheeteditor/main/app/view/ChartSettings.js
apps/spreadsheeteditor/main/app/view/ChartSettings.js
+2
-1
apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
+2
-1
No files found.
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
View file @
a67e3d77
...
...
@@ -109,6 +109,9 @@ define([
this
.
inputRange
.
setValue
(
settings
.
range
?
settings
.
range
:
''
);
if
(
settings
.
type
===
undefined
)
settings
.
type
=
Asc
.
c_oAscSelectionDialogType
.
Chart
;
if
(
settings
.
api
)
{
me
.
api
=
settings
.
api
;
...
...
apps/spreadsheeteditor/main/app/view/ChartSettings.js
View file @
a67e3d77
...
...
@@ -979,7 +979,8 @@ define([
win
.
setSettings
({
api
:
me
.
api
,
range
:
props
.
getRange
(),
validation
:
validation
validation
:
validation
,
type
:
Asc
.
c_oAscSelectionDialogType
.
Chart
});
}
},
...
...
apps/spreadsheeteditor/main/app/view/NamedRangeEditDlg.js
View file @
a67e3d77
...
...
@@ -251,7 +251,8 @@ define([
win
.
show
(
xy
.
left
+
65
,
xy
.
top
+
77
);
win
.
setSettings
({
api
:
me
.
api
,
range
:
(
!
_
.
isEmpty
(
me
.
txtDataRange
.
getValue
())
&&
(
me
.
txtDataRange
.
checkValidate
()
==
true
))
?
me
.
txtDataRange
.
getValue
()
:
me
.
dataRangeValid
range
:
(
!
_
.
isEmpty
(
me
.
txtDataRange
.
getValue
())
&&
(
me
.
txtDataRange
.
checkValidate
()
==
true
))
?
me
.
txtDataRange
.
getValue
()
:
me
.
dataRangeValid
,
type
:
Asc
.
c_oAscSelectionDialogType
.
Chart
});
}
},
...
...
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