I have a view with 10 products, 5 visible per page, with ajax pager enabled. One of the fields in my view is "add to cart form button", supplied by uc.

On the first, page, works great: clicking on add to cart updates the cart as expected without a page reload.

However, going to the second page of the view, with the dynamic (ajax pager), and then clicking on "add to cart", adds the item to cart, but instead of dynamically updating the cart block, loads the "cart" page.

Comments

Erik Seifert’s picture

Component: Code » Miscellaneous
Assigned: Unassigned » Erik Seifert

Sorry this module can not handle this problem now. But i am aware of this.

Erik Seifert’s picture

But you can try this code in your view template

<script type="text/javascript">
jQuery(document).ready(function(){
var options = { 
						url : Drupal.settings.uc_ajax_cart.CALLBACK, 
						beforeSubmit : function() { 
										ajaxCartBlockUI(Drupal.settings.uc_ajax_cart.ADD_TITLE,
														'<div class="messages status">' + Drupal.settings.uc_ajax_cart.ADD_MESSAGE + '</div>')                                 
                                                 } , 
						success : ajaxCartFormSubmitted,
						type : 'post'
		}
jQuery('form.ajax-cart-submit-form').ajaxForm( options );
});
</script>
Erik Seifert’s picture

Status: Active » Fixed

Will be fixed in 2.0-beta1

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.