mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 13:08:45 +02:00
17 lines
731 B
Twig
17 lines
731 B
Twig
{# @copyright Copyright (C) 2010-2020 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{% apply spaceless %}
|
|
|
|
$('#dlg_{{ oUIBlock.sLinkedSetId }}').dialog({
|
|
width: $(window).width()*0.8,
|
|
height: $(window).height()*0.8,
|
|
title:"{{ 'UI:AddObjectsOf_Class_LinkedWith_Class'|dict_format(oUIBlock.sLinkedClassName, oUIBlock.sClassName) }}" ,
|
|
autoOpen: false,
|
|
modal: true,
|
|
resizeStop: oWidget{{ oUIBlock.iInputId }}.UpdateSizes
|
|
});
|
|
|
|
$('#SearchFormToAdd_{{ oUIBlock.sLinkedSetId }} form').bind('submit.uilinksWizard', oWidget{{ oUIBlock.iInputId }}.SearchObjectsToAdd);
|
|
$('#SearchFormToAdd_{{ oUIBlock.sLinkedSetId }}').resize(oWidget{{ oUIBlock.iInputId }}.UpdateSizes);
|
|
|
|
{% endapply %} |