We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
oElemValid
oInputElemValid
temporary I change this line: apo.tmp = $.extend({}, $.AnyPicker.tempDefaults); to apo.tmp = $.extend(true, {}, $.AnyPicker.tempDefaults);
apo.tmp = $.extend({}, $.AnyPicker.tempDefaults);
apo.tmp = $.extend(true, {}, $.AnyPicker.tempDefaults);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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);
The text was updated successfully, but these errors were encountered: