function CVF_Custom_Script() { var otherAmountReferenceName = "cvfctrl300";
var amountButtonsReferenceName = "cvfctrl299";

const clearOtherAmount = () => {
    $cvf(`#${otherAmountReferenceName}`).val(null);
    $cvf(`#${otherAmountReferenceName}`).text(null);
};

// Button Amount Selected
$cvf(document).on('click', `[data-togglegroupcid='${amountButtonsReferenceName}'] label`, clearOtherAmount);

// Isrec Selected
$cvf("[data-refname='isrec']").on('change', function() {
    clearOtherAmount();
});

// Other Amount Entered
$cvf(`#${otherAmountReferenceName}`).on('change', () => {
    if ($cvf(`#${otherAmountReferenceName}`).val() != null) {
        $cvf(`[data-togglegroupcid='${amountButtonsReferenceName}']`).children().removeClass("active");
    }
}); }