Commit a67e3d77 authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] Fix Bug 33733.

parent b2c3707a
......@@ -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;
......
......@@ -979,7 +979,8 @@ define([
win.setSettings({
api : me.api,
range : props.getRange(),
validation: validation
validation: validation,
type : Asc.c_oAscSelectionDialogType.Chart
});
}
},
......
......@@ -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
});
}
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment