Commit ae2e30bdd83b9ce92fbb41c922d13e5cb19663a2

Authored by Erdogan Furkan
1 parent f5ed8bb2

For now

generic_data/Functions/functions.xml
... ... @@ -7,6 +7,13 @@
7 7 <info_brief>average</info_brief>
8 8 <new_kernel>#sampling_classic</new_kernel>
9 9 </function>
  10 + <function name="isinside_(,)" args="1" kind="time" group="stat">
  11 + <prompts>
  12 + <prompt>ahahah</prompt>
  13 + </prompts>
  14 + <info_brief>average</info_brief>
  15 + <new_kernel>#ttcat_to_param</new_kernel>
  16 + </function>
10 17 <function name="median_(,)" args="1" kind="time" group="stat">
11 18 <prompts>
12 19 <prompt>input averaging time in secs</prompt>
... ...
js/app/views/ParameterUI.js
... ... @@ -310,6 +310,8 @@ Ext.define(&#39;amdaUI.ParameterUI&#39;,
310 310 (data.records[0].get('nodeType') == 'derivedParam') ||
311 311 (data.records[0].get('nodeType') == 'specialParam') ||
312 312 (data.records[0].get('nodeType') == 'myDataParam') ||
  313 + (data.records[0].get('nodeType') == 'timeTable') ||
  314 + (data.records[0].get('nodeType') == 'catalog') |
313 315 (data.records[0].get('nodeType') == 'alias')) &&
314 316 (data.records[0].isLeaf() || data.records[0].get('isParameter')) &&
315 317 !(data.records[0].data.disable)) {
... ... @@ -359,6 +361,12 @@ Ext.define(&#39;amdaUI.ParameterUI&#39;,
359 361 case 'specialParam':
360 362 nameToSent = data.records[0].get('id');
361 363 break;
  364 + case 'timeTable':
  365 + nameToSent = data.records[0].get('text');
  366 + break;
  367 + case 'catalog':
  368 + nameToSent = data.records[0].get('text');
  369 + break;
362 370 case 'myDataParam':
363 371 var name = data.records[0].get('text');
364 372 nameToSent = "wsd_" + name;
... ...