Commit 9d88b61f1f5867fa6dd1a203a01e8f3ba4dae919
1 parent
98c92bbf
Exists in
master
and in
49 other branches
Forgot this file
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
js/app/views/ParameterUI.js
@@ -308,6 +308,7 @@ Ext.define('amdaUI.ParameterUI', | @@ -308,6 +308,7 @@ Ext.define('amdaUI.ParameterUI', | ||
308 | (data.records[0].get('nodeType') == 'remoteParam') || | 308 | (data.records[0].get('nodeType') == 'remoteParam') || |
309 | (data.records[0].get('nodeType') == 'remoteSimuParam') || | 309 | (data.records[0].get('nodeType') == 'remoteSimuParam') || |
310 | (data.records[0].get('nodeType') == 'derivedParam') || | 310 | (data.records[0].get('nodeType') == 'derivedParam') || |
311 | + (data.records[0].get('nodeType') == 'specialParam') || | ||
311 | (data.records[0].get('nodeType') == 'myDataParam') || | 312 | (data.records[0].get('nodeType') == 'myDataParam') || |
312 | (data.records[0].get('nodeType') == 'alias')) && | 313 | (data.records[0].get('nodeType') == 'alias')) && |
313 | (data.records[0].isLeaf() || data.records[0].get('isParameter')) && | 314 | (data.records[0].isLeaf() || data.records[0].get('isParameter')) && |
@@ -355,6 +356,9 @@ Ext.define('amdaUI.ParameterUI', | @@ -355,6 +356,9 @@ Ext.define('amdaUI.ParameterUI', | ||
355 | case 'derivedParam': | 356 | case 'derivedParam': |
356 | nameToSent = "ws_" + data.records[0].get('text'); | 357 | nameToSent = "ws_" + data.records[0].get('text'); |
357 | break; | 358 | break; |
359 | + case 'specialParam': | ||
360 | + nameToSent = data.records[0].get('id'); | ||
361 | + break; | ||
358 | case 'myDataParam': | 362 | case 'myDataParam': |
359 | var name = data.records[0].get('text'); | 363 | var name = data.records[0].get('text'); |
360 | nameToSent = "wsd_" + name; | 364 | nameToSent = "wsd_" + name; |