RT-Extension-FormTools
view release on metacpan or search on metacpan
Revision history for RT-Extension-FormTools
1.17 2025-04-09
- Fix issue with HR component
- Dynamically create cascaded custom field value options on custom field change
- Add core field Starts
- Localize additional strings and core fields - Sollericos
- Add translation for Spanish and Catalan - Sollericos
1.16 2024-12-03
- Support to conditionally show fields
1.15 2024-10-31
- Support queue routing
- Support to group forms
html/Forms/dhandler view on Meta::CPAN
changed = 1;
}
}
else {
if ( !target.closest('.formtools-item').hasClass('hidden') ) {
target.closest('.formtools-item').addClass('hidden');
changed = 1;
}
}
// cascade changes
if ( changed && target.find('select[name^="Object-RT::Ticket--CustomField"]').length ) {
const target_select = target.find('select[name^="Object-RT::Ticket--CustomField"]');
const target_name = target_select.attr('name');
if (jQuery('[data-show-condition-name="' + target_name + '"]').length) {
target_select.change();
}
}
};
jQuery(':input[type!=hidden][name="' + show_condition_name +'"]').change(syncShowCondition).change();
( run in 0.626 second using v1.01-cache-2.11-cpan-49f99fa48dc )