nehakadam / AnyPicker

jQuery Picker Library for Android, iOS & Windows Phone. eg Date Picker, Time Picker, DateTime Picker, Custom Select etc
https://nehakadam.github.io/AnyPicker/
MIT License
116 stars 37 forks source link

BasicPicker and DatePicker can't work together #30

Open civet opened 6 years ago

civet commented 6 years ago

I define a BasicPicker after DatePicker. When I click on DatePicker, console show error: "No InputElement Specified".

finally I found that they are sharing some objects, such as oElemValid, oInputElemValid so, I think we need deep copies of these objects.

temporary I change this line: apo.tmp = $.extend({}, $.AnyPicker.tempDefaults); to apo.tmp = $.extend(true, {}, $.AnyPicker.tempDefaults);