Info |
---|
This documentation refers to the v0.4 released version of the Reorderer code. For documentation specific to the trunk, please see Grid Reorderer API. |
Simple Grid Reorderer OverviewThe Simple Grid Reorderer is a convenience function for applying the Reorder to a grid of items with minimal effort. This page provides technical details of the API. For a simple working example, see Integrating the Reorderer. Initialization Code Block |
---|
|
var myReorderableGrid = fluid.reorderGrid(containerSelector,
itemSelector,
orderChangedCallback,
options);
|
ParameterscontainerSelectorThe containerSelector is a CSS-based string selector identifying the DOM element that contains the elements to be reorderable. This may be a <div> that encapsulates the reorderable elements, for example. |