Fixed code to support contribution search for soft credit filter

This commit is contained in:
2019-03-26 21:51:17 +00:00
parent a24c24e846
commit 37bc03a58f
3 changed files with 39 additions and 13 deletions

View File

@ -16,6 +16,17 @@
CRM.$(function($) {
$('div#contribution_soft_credit_type_wrapper').append($('div.crm-softcredit-form-block-soft_credit_sort_name'));
$('div#contribution_soft_credit_type_wrapper').append($('div.softcredit_custom_groups'));
hideShowInMemoryOf();
$('select#contribution_or_softcredits').change(hideShowInMemoryOf);
function hideShowInMemoryOf() {
let softOption = $('select#contribution_or_softcredits').val();
if (softOption == 'only_contribs') {
$('div#contribution_soft_credit_type_wrapper').show();
}
}
});
{/literal}
</script>