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?