jquery-mobile-datepicker-wrapper icon indicating copy to clipboard operation
jquery-mobile-datepicker-wrapper copied to clipboard

Wrapper to turn jquery ui datepicker into a mobile widget.

Results 20 jquery-mobile-datepicker-wrapper issues
Sort by recently updated
recently updated
newest added

Working code (part of Wordress template) looks like: ``` ``` ``` jQuery(document).ready(function() { jQuery("#dataStart").datepicker({ minDate: '+2d', changeMonth: true, changeYear: true, dateFormat: 'mm/dd/yy', onSelect: function(date){ var dates = date.split('/'); var lastDate...

This wrapper is not showing the current date...

In _create function variable calendar is a function variable so this.calendar is undefined I think this ``` this.baseWidget = ( !this.options.inline )? this.element: this.calendar; ``` must be replaced with this...

Please see: http://jsbin.com/xebaxiya/3/edit Pop up works in first listview, but after clicking "Add Date" I can't see how to get the popup to work on the subsequent listviews. Any advice?...

_This seems to be similar to https://github.com/jquery/jquery-mobile/issues/6952_ Here's what I see after accessing http://jsfiddle.net/FUGZN/ or http://jsbin.com/uzaret/1375/edit (before and after focusing on 1st input field) ![image](https://cloud.githubusercontent.com/assets/7957690/3352122/fbdbd612-fa32-11e3-991a-c0470529ae04.png) Same happens when I try...

Many default options are already set in the ui-datepicker and extended by: ``` js $.extend( this.options, $.datepicker._defaults ); ```

`data-theme` attribute doesn't work (the wrapper doesn't have a method to set the theme)

i am not sure how to post html code? Thanks! Brian

The inline datepicker doesn't change it's styling when inside fieldcontain. ![croppercapture 3](https://f.cloud.github.com/assets/122742/2119827/09971ac2-918e-11e3-993e-da7a1a6cb6ad.png) I've attempted to fix the styling a bit http://jsbin.com/uzaret/1300/edit ``` css .ui-field-contain > div.hasDatepicker { margin: 8px 0;...