Examples
List of modules
-
Ace Editor
Affix
Alert
Audio
Button
Carousel
Char Counter
Color Picker
Data Table
Datepicker
Diagram Builder
Dropdown
Form Builder
Form Validator
I/O
Image Cropper
Image Viewer
Modal
Node
Pagination
Popover
Progress Bar
Rating
Scheduler
Scrollspy
Sortable Layout
Sortable List
Tabview
Timepicker
Toggler
Toolbar
Tooltip
TreeView
Video
Viewport
Sortable List
The list elements below are not in order. Order them using simple drag and drop!
- Shape into 2" spheres and place on cookie sheet
- Add flour and baking powder
- Mix ingredients
- Blend butter, sugar, eggs, and vanilla
- Bake
- Check every few minutes
- Should take around 10-12 minutes
- Remove when golden brown
- Preheat oven to 350°
- Enjoy!
YUI().use(
'aui-sortable-list',
function(Y) {
var placeholder = Y.Node.create('<li class="placeholder"></li>');
new Y.SortableList(
{
dropCondition: function(event) {
return true;
},
dropOn: 'myList',
nodes: '#myList li',
placeholder: placeholder
}
);
}
);