Fixed code to support contribution search for soft credit filter
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user