• Welcome to KonaKart Community Forum. Please login or sign up.
 
April 06, 2025, 07:26:12 am

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Rox

1
I know the API's wont refresh the page.
I am looking for the Ajax/javascript method which konakart is using so i can call that to refresh.
Is there any method like that.

Thanks,
Rox
2
Hi,

I am using following code to add item to cart.

         BasketIf b = new Basket();
         b.setQuantity(1);
         b.setProductId(selectedProd.getId());
         kkAppEng.getBasketMgr().addToBasket(b, /* refresh */true);
         kkAppEng.getBasketMgr().updateBasket(b, /* refresh */true)

Am I missing any thing?

And even if the basket is updated I think i need to refresh the browser.I want the browser gets refreshed automatically(by calling any method ).
Thanks,
Rox

3
Hi,

If I kkAppEng.getBasketMgr().updateBasket(b, /* refresh */true) i am getting the following exception.

com.konakart.app.KKException: The basket item (id=0) does not belong to the customer (id=2)

But I am using the same basket object which i used to addtoCart function
4
Hi,

I am trying to add Products to cart using API's from other application.

And I want to refresh the cart once they are added if the cart is open.

Is there any event to trigger?

Please let me know how to refresh the cart?

Thanks,
Rox