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 | 308 | (data.records[0].get('nodeType') == 'remoteParam') || |
309 | 309 | (data.records[0].get('nodeType') == 'remoteSimuParam') || |
310 | 310 | (data.records[0].get('nodeType') == 'derivedParam') || |
311 | + (data.records[0].get('nodeType') == 'specialParam') || | |
311 | 312 | (data.records[0].get('nodeType') == 'myDataParam') || |
312 | 313 | (data.records[0].get('nodeType') == 'alias')) && |
313 | 314 | (data.records[0].isLeaf() || data.records[0].get('isParameter')) && |
... | ... | @@ -355,6 +356,9 @@ Ext.define('amdaUI.ParameterUI', |
355 | 356 | case 'derivedParam': |
356 | 357 | nameToSent = "ws_" + data.records[0].get('text'); |
357 | 358 | break; |
359 | + case 'specialParam': | |
360 | + nameToSent = data.records[0].get('id'); | |
361 | + break; | |
358 | 362 | case 'myDataParam': |
359 | 363 | var name = data.records[0].get('text'); |
360 | 364 | nameToSent = "wsd_" + name; | ... | ... |