Hi
I am doing draggable element with sessions. But sessions are new to
me. I have a draggable_element which should be dragged to the cart. I
have defined action add for receving element. How I can delivery
variable or text to the receving element
So my view goes :
TEST DRAGGABLE
<%= draggable_element "param1", :revert => true%><%= drop_receiving_element “cart”,
:update => “drop_params”,
:url => {:action => “add”},
:accept => “params”,
:hoverclass => “cart-active”,
:loading => “Element.show(‘indicator’)”,
:complete => “Element.hide(‘indicator’)”%>
Contoroller goes :
In controller I have no idea what I should do. I have done few
sessions with php, but not with rails.
def index
session[:pipe] ||= {}
end
def add
render :partial => "cart"
end
Partial cart goes:
<% session[:pipe].each do [param]%>
I priciate for your help