How is a payment methods list rendered on the frontend checkout page?








Further:

See also:

Hi,

How do you get the payment section to re-render?
I’ve tried this:

		    var deferred = $.Deferred();
		    getPaymentInformationAction(deferred);
		    $.when(deferred).done(function () {
			totals.isLoading(false);
		    });
                    totals.isLoading(true);

but it’s not working, the payment methods do not reload. Any ideas?

Thanks.