Skip to content

Commit

Permalink
method list update
Browse files Browse the repository at this point in the history
  • Loading branch information
dbunic committed Oct 30, 2012
1 parent 88cf18f commit 0a3728f
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions readme.md
@@ -1,4 +1,4 @@
REDIPS.drag 4.7.5
REDIPS.drag 5.0.0
============

## What's REDIPS.drag?
Expand Down Expand Up @@ -33,22 +33,23 @@ REDIPS.drag is a JavaScript drag and drop library focused on dragging table cont
## Public methods

* REDIPS.drag.init() - drag container initialization
* REDIPS.drag.enable_drag() - enables / disables one or all DIV elements in tables
* REDIPS.drag.enable_table() - enables / disables tables selected by class name
* REDIPS.drag.clone_div() - clones DIV element and returns reference of the cloned element
* REDIPS.drag.save_content() - scans table and prepares table content as query string or JSON object
* REDIPS.drag.relocate() - relocates all child nodes from source table cell to the target table cell
* REDIPS.drag.empty_cell() - removes elements from table cell
* REDIPS.drag.move_object() - method will calculate parameters and start animation (DIV element to the destination table cell)
* REDIPS.drag.shift_cells() - method shifts table content horizontally or vertically (REDIPS.drag.shift_option defines the way of how content will be shifted)
* REDIPS.drag.delete_object() - method deletes DIV element (input parameter is DIV reference or element id)
* REDIPS.drag.get_position() - returns DIV element position as array (tableIndex, rowIndex and cellIndex)
* REDIPS.drag.row_opacity() - sets opacity to table row (el, opacity, color)
* REDIPS.drag.row_empty() - marks selected row as empty (tbl_id, row_idx, [color])

* REDIPS.drag.cloneObject() - clones DIV element and returns reference of the cloned element
* REDIPS.drag.deleteObject() - method deletes DIV element (input parameter is DIV reference or element id)
* REDIPS.drag.emptyCell() - removes elements from table cell
* REDIPS.drag.enableDrag() - enables / disables one or all DIV elements in tables
* REDIPS.drag.enableTable() - enables / disables tables selected by class name
* REDIPS.drag.findCell() - returns data for first or last table cell (cell reference, row index and column index)
* REDIPS.drag.findParent() - returns a reference of the required parent element
* REDIPS.drag.getPosition() - returns DIV element position as array (tableIndex, rowIndex and cellIndex)
* REDIPS.drag.getScrollPosition() - returns scroll positions as array [ scrollX, scrollY ]
* REDIPS.drag.get_style() - returns style value of requested object and style name
* REDIPS.drag.find_parent() - returns a reference of the required parent element
* REDIPS.drag.find_cell() - returns data for first or last table cell (cell reference, row index and column index)
* REDIPS.drag.getStyle() - returns style value of requested object and style name
* REDIPS.drag.moveObject() - method will calculate parameters and start animation (DIV element to the destination table cell)
* REDIPS.drag.relocate() - relocates all child nodes from source table cell to the target table cell
* REDIPS.drag.rowEmpty() - marks selected row as empty (tbl_id, row_idx, [color])
* REDIPS.drag.rowOpacity() - sets opacity to table row (el, opacity, color)
* REDIPS.drag.saveContent() - scans table and prepares table content as query string or JSON object
* REDIPS.drag.shiftCells() - method shifts table content horizontally or vertically (REDIPS.drag.shift_option defines the way of how content will be shifted)

## Documentation

Expand Down

0 comments on commit 0a3728f

Please sign in to comment.