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
24c332b9
Commit
24c332b9
authored
Sep 29, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Fix bug with selecting data range.
parent
e7ad4107
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
+2
-2
apps/spreadsheeteditor/main/app/view/ChartSettings.js
apps/spreadsheeteditor/main/app/view/ChartSettings.js
+3
-3
No files found.
apps/spreadsheeteditor/main/app/view/CellRangeDialog.js
View file @
24c332b9
...
...
@@ -119,8 +119,8 @@ define([
}
me
.
inputRange
.
validation
=
function
(
value
)
{
if
(
me
.
option
s
.
validation
)
{
return
me
.
option
s
.
validation
.
call
(
me
,
value
);
if
(
setting
s
.
validation
)
{
return
setting
s
.
validation
.
call
(
me
,
value
);
}
else
{
var
isvalid
=
me
.
api
.
asc_checkDataRange
(
Asc
.
c_oAscSelectionDialogType
.
Chart
,
value
,
false
);
return
(
isvalid
==
Asc
.
c_oAscError
.
ID
.
DataRangeError
)
?
me
.
txtInvalidRange
:
true
;
...
...
apps/spreadsheeteditor/main/app/view/ChartSettings.js
View file @
24c332b9
...
...
@@ -417,14 +417,14 @@ define([
};
var
win
=
new
SSE
.
Views
.
CellRangeDialog
({
handler
:
handlerDlg
,
validation
:
validation
handler
:
handlerDlg
});
win
.
show
();
win
.
setSettings
({
api
:
me
.
api
,
range
:
props
.
getRange
()
range
:
props
.
getRange
(),
validation
:
validation
});
}
},
...
...
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