Displaying 20 results from an estimated 10000 matches similar to: "question about scriptaculous drag and drop shopping cart"
2006 May 18
1
Drag and drop purchased items into a shopping cart
All,
does any one has a drag and drop sample code using rails and ajax that
I can use as a starting point for mine? I ''ll for customers to drag and
drop item being purchase into their shopping cart.
Thanks
Patrick
2008 Mar 29
1
drag and drop or shopping cart
I would like to know whether there are plugins for the above. If not,
could anyone direct me to the resouces to develop a drag and drop module
for muy ror project.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group,
2006 Jan 09
6
drag and drop problem
I am working on a resource planning problem. I like to use a nice drag
and drop interface for that. E.g. have a box of persons and a box of
projects, now I would like to assign a persom to project by dragging it
from the available resources box to a recieving project box.
I have studied the amazing drag and drop shopping card code listed here
http://demo.script.aculo.us/shop
What I need to
2008 May 30
1
Drag and Drop with scriptaculous
Hello,
I''m making my first steps with prototype and scriptaculous.
I''m playing around with drag and drop.
What I try to do:
I have some Draggables and some Droppables. You can drag each
Draggables to each Droppables.
When I drop a Draggables I want to center the Draggables inside the
Droppable.
And here I get my first problems:-(
I use this code:
Droppables.add(
2007 Nov 16
1
drag & drop list needs refreshing
Hello guys, I''m a scriptaculous newbie (I started working with it only
yesterday) and I have already the first problem.
I''m trying to implement a drag & drop list (fallowing the shopping
cart example http://demo.script.aculo.us/shop) and I''m almost done
but after dropping an item on the target div I need to refresh the
page to see that the item has been moved.
2006 Jun 18
0
Very cool scriptaculous table drag and drop stopped working on new version
Using older versions of prototype.js (1.4.0_rc2) and scriptaculous
(1.5._rc4), I had a master table containg other tables (sections), each
of which had rows. Using tbody''s as containers, I could drag the
section tables up and down over the other section tables AND drag the
rows in a section table up and down within that table or into the rows
of the other section tables, all very
2008 Feb 05
0
scriptaculous drag and drop question
I have been using the scriptaculous library to build a drag and drop
feature for the application I am working on. I wanted to add
additional features and I was wondering how I would go about it using
scriptaculous library I have been searching around the web and I have
not found anything helpful.
I wanted to add a drag proxy so that when user drags on a div I wanted
the build the a new div with a
2005 Aug 01
2
scriptaculous: Drag/Drop Sluggish Animation (release animation time should be proportional to remaining distance)
Thomas suggested posting these here so they don''t get
lost.
Making Scriptaculous Snappy:
*) Drag/Drop - make release cost proportional to
remaining distance
For drag/drop - change the ''release'' animation time to
be proportional to the remaining distance the dropped
item has to travel. If a user drags the item almost
all the way to the final location, the release time
2005 Jun 29
0
Pb : keep the coordinates after drag and drop
Hi,
I''m coding a shopping cart using your effects library.
There are 2 parts in my page. On the left the list of my products and on the right the shopping cart.
I can sort dynamically my products (by price, title, etc...) . I have a problem when I do a sort, and I want to drag a product. My system keep the initial position of each product. The products moves correctly after the
2006 Aug 09
1
Can I use drag-and-drop for this?
I want to be able to drag an image somewhere in the browser, and then
call an action based on where it''s dropped. Actually I''d probably
want to call the same action regardless, but send it particular
parameters based on where it dropped. I''ve seen the sortable list
demos, but I''m wondering if I can do something more flexible like
that. Any ideas?
Pat
2006 Mar 23
4
Implementing nested drag and drop using scriptaculous
Hi.
I have gone through the scriptaculous wiki. I am trying to implement nested drag and drop but not able to do this.
The situation is like this.
_____________________________
| abc | => Box1Line1
| cde | => Box1Line2
| efg | => Box1Line3
| h | => Box1Line4
2006 Jun 26
2
Drag''n''drop DOM elements between (I)FRAMEs
I am quite disappointed in the drag ''n'' drop support in Mozilla Firefox.
What am trying to achieve is dragging an element from one IFRAME/FRAME into
another IFRAME/FRAME. But upon dropping the element, I do not want the
target IFRAME/FRAME to open/load it. I want it simply to handle the event,
such as parsing the element/data dropped. Such uses as dropping an element
into a
2005 Sep 20
1
multiple items drag and drop
Does anyone know how I can create something that would enable me to drag & drop multiple items?
Example: In an email application (like outlook web access) I want to select multiple mails and move them to a folder.
Is it possible to do it with this library?
The shopping cart example doesn''t let you select the other div (image) using the control key...
Any help would be greatly
2007 Aug 17
1
Need volunteers for new Rails based shopping cart
We''re currently looking for volunteers on the new RailsCart[1]
project. The idea is to build something relatively simple with all of
the features that most open source shopping carts seem to be missing.
We''ll be using ActiveMerchant for all of our payment gateway needs.
We''re not trying to build the ultimate shopping cart. This is
designed for Rails developers who need
2005 Dec 05
3
Multi-level drag and drop in scriptaculous?
I am trying to create a screen like Google''s personalized home pages or
start.com, i.e., with draggable sections, with the extra feature that
the child items under the parent headings could be dragged and dropped
from one parent heading to another.
I have set up nested droppable sortables (dropOnEmpty=true) but the
behavior is very inconsistent, i.e, parents do not become droppable
2005 Sep 19
0
Sortables and not-Sortables
I have some drag and drop to do that is just a little different from the
scriptaculous demos. My application has a shopping cart-like setup,
where the user needs to drag an item from the main content area to a
particular position in the cart. I don''t want to be able to sort items
in the content area. That is, the target is a Sortable list, but the
source is not.
Problem one was that
2005 Jul 20
1
RE: Rails-spinoffs Digest, Vol 2, Issue 22
Hi Jonah,
I support usability. For a great book on it, read Jakob Nielsen''s "Designing
Web Usability: The Practice of Simplicity" and, for a great general book on
usability, try "The Design of Everyday Things."
You''re right.
Drag ''n drop is not the best tool for many things. Unless something offers a
50%+ advantage over an existing method of doing
2005 Dec 14
9
Passing quantity in a shopping cart
I am using this line on my index.rhtml page to capture the quantity
required of a particular item for a basic shopping cart app:
<%= text_field ''line_item'', ''quantity'', {:size=>3} %> </td>
but my next screen (a cart screen) doesn''t reflect what was entered in
that text field when the item is added to the cart. That is,
2012 Jun 17
0
The rails way to develop a multi product type shopping cart
Hi,
I''m developing an application which has to manage many types of products.
But I can''t think what the best approach in rails is on how to implement
them. Here is a selection of some of the products (with some data types)
that the software will have to manage:
Speaker
Make - String
Model - String
Wattage - Integer
Price - Decimal
2008 Jan 23
1
Weird shopping cart behaviour!
Dear all,
I have a general form (which I generate via form_tag) for a
''subscription''.
Inside this form the user can add ''elements'' to his subscription. I do
this with an an additional Ajax form:
<% form_remote_tag :url => { :action => :add_to_cart, :id => element }
do%>
<%= submit_tag "Add" %>
<% end %>
Every time the