mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
10 lines
573 B
Twig
10 lines
573 B
Twig
{% if oUIBlock.GetOption("select_mode") is not empty %}
|
|
let oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = [];
|
|
{% if oUIBlock.GetOption("sSelectedRows") is not empty %}
|
|
oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = {{ oUIBlock.GetOption('sSelectedRows')|raw }};
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
let bSelectAllowed{{ oUIBlock.GetId()|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = false;
|
|
|