{% import 'flow/type2component/array2component.html' as a2c with context %} {% import 'flow/type2component/boolean2component.html' as b2c with context %} {% import 'flow/type2component/datatype2component.html' as d2c with context %} {% import 'flow/type2component/file2component.html' as f2c with context %} {% import 'flow/type2component/multipleselect2component.html' as ms2c with context %} {% import 'flow/type2component/number2component.html' as n2c with context %} {% import 'flow/type2component/select2component.html' as s2c with context %} {% import 'flow/type2component/string2component.html' as s2c2 with context %} {% macro create_select_options(inputRow, use_in) -%} {% for option in inputRow.options %} {% set add_attrs1= 'selected' if ('default' in inputRow) and ((option.value | string) == (inputRow.default | string)) else '' %} {% if 'default' not in inputRow %} {% set input_row_default = [] %} {% else %} {% if inputRow.default | isinstance(str | type) %} {% set input_row_default = [inputRow.default] %} {% else %} {% set input_row_default = inputRow.default %} {% endif %} {% endif %} {% set add_attrs2 = 'selected' if (option.value | string) in input_row_default else '' %} {% set add_attrs = add_attrs2 if use_in else add_attrs1 %} {% endfor %} {%- endmacro %} {% macro add_checkbox_control(inputRow) -%} {% if param_checkbox_config == True %}
{% endif %} {%- endmacro %} {% macro generateDisplay(inputList, disabled, parentDivId, treeSessionKey='defaultTree', extra_class=none, draw_hidden_ranges = false) -%}
{%- endmacro %}