instance method
sortable_element
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v3.0.20Signature
sortable_element(element_id, options = {})
Makes the element with the DOM ID specified by element_id sortable by drag-and-drop and make an Ajax call whenever the sort order has changed. By default, the action called gets the serialized sortable element as parameters.
Example:
<%= sortable_element("my_list", :url => { :action => "order" }) %>
In the example, the action gets a “my_list” array parameter containing the values of the ids of elements the sortable consists of, in the current order.
Important: For this to work, the sortable elements must have id attributes in the form “string_identifier”. For example, “item_1”. Only the identifier part of the id attribute will be serialized.
Additional options are:
-
:format- A regular expression to determine what to send as the serialized id to the server (the default is/^[^_]*_(.*)$/). -
:constraint- Whether to constrain the dragging to either:horizontalor:vertical(or false to make it unconstrained). -
:overlap- Calculate the item overlap in the:horizontalor:verticaldirection. -
:tag- Which children of the container element to treat as sortable (default isli). -
:containment- Takes an element or array of elements to treat as potential drop targets (defaults to the original target element). -
:only- A CSS class name or array of class names used to filter out child elements as candidates. -
:scroll- Determines whether to scroll the list during drag operations if the list runs past the visual border. -
:tree- Determines whether to treat nested lists as part of the main sortable list. This means that you can create multi-layer lists, and not only sort items at the same level, but drag and sort items between levels. -
:hoverclass- If set, the Droppable will have this additional CSS class when an accepted Draggable is hovered over it. -
:handle- Sets whether the element should only be draggable by an embedded handle. The value may be a string referencing a CSS class value (as of script.aculo.us V1.5). The first child/grandchild/etc. element found within the element that has this CSS class value will be used as the handle. -
:ghosting- Clones the element and drags the clone, leaving the original in place until the clone is dropped (default isfalse). -
:dropOnEmpty- If true the Sortable container will be made into a Droppable, that can receive a Draggable (as according to the containment rules) as a child element when there are no more elements inside (default isfalse). -
:onChange- Called whenever the sort order changes while dragging. When dragging from one Sortable to another, the callback is called once on each Sortable. Gets the affected element as its parameter. -
:onUpdate- Called when the drag ends and the Sortable’s order is changed in any way. When dragging from one Sortable to another, the callback is called once on each Sortable. Gets the container as its parameter.
See script.aculo.us for more documentation.
Parameters
-
element_idreq -
optionsopt = {}
Source
# File actionpack/lib/action_view/helpers/scriptaculous_helper.rb, line 135
def sortable_element(element_id, options = {})
javascript_tag(sortable_element_js(element_id, options).chop!)
end
Defined in actionpack/lib/action_view/helpers/scriptaculous_helper.rb line 135
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Helpers::ScriptaculousHelper