Fix Bug 51491
This commit is contained in:
parent
213283ac34
commit
e1fc8d4de3
|
@ -1035,6 +1035,7 @@ define([
|
|||
},
|
||||
|
||||
onSelectItem: function(listView, itemView, record) {
|
||||
if (!record) return;
|
||||
this.txtNewValue.setValue(record.get('name'));
|
||||
this._state.listValue = record.get('name');
|
||||
this._state.listIndex = undefined;
|
||||
|
|
|
@ -1375,6 +1375,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem
|
|||
},
|
||||
|
||||
onSelectTab: function(lisvView, itemView, record) {
|
||||
if (!record) return;
|
||||
var rawData = {},
|
||||
isViewSelect = _.isFunction(record.toJSON);
|
||||
|
||||
|
|
|
@ -416,6 +416,7 @@ define([
|
|||
},
|
||||
|
||||
onSelectItem: function(picker, item, record, e){
|
||||
if (!record) return;
|
||||
this.btnOk.setDisabled(record.get('index')==4);
|
||||
if (this.isAutoUpdate) {
|
||||
this.inputDisplay.setValue((record.get('level') || record.get('index')<4) ? record.get('name') : '');
|
||||
|
|
|
@ -726,6 +726,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced
|
|||
},
|
||||
|
||||
onSelectTab: function(lisvView, itemView, record) {
|
||||
if (!record) return;
|
||||
var rawData = {},
|
||||
isViewSelect = _.isFunction(record.toJSON);
|
||||
|
||||
|
|
|
@ -348,6 +348,7 @@ define([
|
|||
},
|
||||
|
||||
onSelectStyles: function(dataView, itemView, record) {
|
||||
if (!record) return;
|
||||
this.chartSettings.putStyle(record.get('data'));
|
||||
},
|
||||
|
||||
|
|
|
@ -721,6 +721,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced.
|
|||
},
|
||||
|
||||
onSelectTab: function(lisvView, itemView, record) {
|
||||
if (!record) return;
|
||||
var rawData = {},
|
||||
isViewSelect = _.isFunction(record.toJSON);
|
||||
|
||||
|
|
Loading…
Reference in a new issue