Commit 255b183d243331085b863fb7dc35c73894ab9f8d

Authored by Benjamin Renard
1 parent abde111c

Fix

js/app/models/PlotObjects/PlotPanelObject.js
@@ -41,7 +41,7 @@ Ext.define('amdaPlotObj.PlotPanelObject', { @@ -41,7 +41,7 @@ Ext.define('amdaPlotObj.PlotPanelObject', {
41 {name: 'fills-node-state', type: 'int', defaultValue: 2}, //0 : collapsed, 1 : expanded, 2 : not set 41 {name: 'fills-node-state', type: 'int', defaultValue: 2}, //0 : collapsed, 1 : expanded, 2 : not set
42 {name: 'panel-index', type: 'int'}, 42 {name: 'panel-index', type: 'int'},
43 {name: 'panel-background-color', type: 'string'}, 43 {name: 'panel-background-color', type: 'string'},
44 - { name: 'panel-plotareabackground-color', type: 'string' }, 44 + { name: 'panel-plotareabackground-color', type: 'string', defaultValue: 'none' },
45 {name: 'panel-title-text', type: 'string'}, 45 {name: 'panel-title-text', type: 'string'},
46 {name: 'panel-title-color', type: 'string'}, 46 {name: 'panel-title-color', type: 'string'},
47 {name: 'panel-title-position', type: 'string'}, 47 {name: 'panel-title-position', type: 'string'},
js/app/views/ParamArgumentsUI.js
@@ -49,7 +49,7 @@ Ext.define('amdaUI.ParamArgumentsUI', { @@ -49,7 +49,7 @@ Ext.define('amdaUI.ParamArgumentsUI', {
49 if (explorerModule) { 49 if (explorerModule) {
50 explorerModule.getParamInfo(paramRequestObject.get('paramid'), function (paramInfo) { 50 explorerModule.getParamInfo(paramRequestObject.get('paramid'), function (paramInfo) {
51 if (paramInfo) { 51 if (paramInfo) {
52 - paramRequestObject.set(amdaPlotObj.PlotObjectConfig.bgSubstraction.tableName, paramInfo.data.tables); 52 + paramRequestObject.set("channels-param-info", paramInfo.data.tables);
53 53
54 if (!paramRequestObject.get('is-init')) { 54 if (!paramRequestObject.get('is-init')) {
55 if (paramInfo.data && paramInfo.data.dimensions) { 55 if (paramInfo.data && paramInfo.data.dimensions) {