draggablelist


jQuery plugin to make a list draggable

jquery.draggableList

jQuery plugin. Point at an unordered list (or other element) specify a containment size and the list will become draggable. Drag the list up and down to scroll its contents.


Demo

Check out a very basic demo: http://www.webpangea.co.uk/draggablelistdemo.htm


Example Usage

```

$(document).ready(function() { $('.myList').draggableList({height:150, listPosition:0}); });

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • ```


    Options

    The plugin has a bunch of options with default values as follows:

    cursor: 'n-resize', height: '150', width: '100', listPosition: '0', panelCssClass:'draggableList'

    cursor

    CSS cursor style on hovering over the list

    height

    Numeric-value - pixels The height of the element which will hold the list (it's overflow will be set to hidden)

    width

    Numeric-value - pixels The width of the element which will hold the list

    listPosition

    Value between 0 and 100 : Where abouts the list will be positioned relative to it's container. When 0, the list will appear scrolled right to the top, so the first element will be at the top of the container. When set to 100 the list will be scrolled right to the bottom

    panelCssClass

    Name of the css class that is added to the container item. Used to style the container.


    Dependancies

    Has dependancies on: * jQuery * ui.core * ui.draggable

    Project Information

    Labels:
    jQuery plugin draggable