A Bootstrap-themed kickstart for jQuery UI widgets (v0.5).
This is an example of how to retheme one of the Wijmo jQuery UI components to match the Twitter Bootstrap theme. Whilst a menu component will be arriving to jQueryUI soon, you can find the menu in Wijmo Open.
$("#menu1").wijmenu({
trigger: ".wijmo-wijmenu-item",
triggerEvent: "click"
});
$('#file').customFileInput({
button_position : 'right'
});
// Select a Date Range with datepicker
$( "#rangeBa" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#rangeBb" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#rangeBb" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#rangeBa" ).datepicker( "option", "maxDate", selectedDate );
}
});