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
Datepicker
<textarea class="form-control" type="text" placeholder="mm/dd/yy">01/07/14 — 01/08/14 — 01/19/14</textarea>
YUI().use(
'aui-datepicker',
function(Y) {
new Y.DatePicker(
{
trigger: 'textarea',
mask: '%m/%d/%y',
calendar: {
selectionMode: 'multiple'
},
popover: {
zIndex: 1
},
panes: 2
}
);
}
);