The global objective is to implement a lightweight carting system (ubbercart isn't suitable for my specific needs).

In the right sidebar I have a block 'cart' which displays my 'cart_form'. At page load 'cart_form' is initialized with items already in cart (I store them in $_SESSION['cart'][]).

Meanwhile I'm displaying a view (in the content area) enumerating all the element in can add to my cart. When I click on one of them, an ajax callback is executed, I add the item in $_SESSION and then I would like to update my form with the newly added item.

What would be the most efficient way to do it?
Is it possible to reuse the form I already computed on page load?

link|improve this question
feedback

1 Answer

this article will give you some good background on updating forms using AHAH in drupal.

http://drupal.org/node/348475

link|improve this answer
Already read it. Unfortunately the element that are in the view are not part of the form so I can't use AHAH directly. – Charter Jan 22 '11 at 15:47
Please update question, since you are looking to update a view not a form, I think. Have you looked into how ajax updates of views are triggered, and executed. It sounds like you are looking for a way to force an AJAX view to be updated. Also a simpler solution might be to simply load the view again using ajax. This is a little difficult to imaging given the lack of detail, can you post maybe a screenshot or some code snippets. – mirzu Jan 22 '11 at 22:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.