AutoClose not working
See original GitHub issueHi, i use the autoclose method but this not working in Chrome: js:
$(document).ready(function () {
$('.datepicker').datepicker({
format: "dd/mm/yyyy",
autoclose: true
});
});
html:
<input class="datepicker valid" data-val="true" data-val-date="El campo Vencimiento debe ser una fecha." id="FirstMaturiy" name="FirstMaturiy" readonly="readonly" type="text" value="">
Thanks for your help.
Issue Analytics
- State:
- Created 10 years ago
- Comments:41 (6 by maintainers)
Top Results From Across the Web
Bootstrap datepicker not close automatically after picking a date
autoclose works fine when you use the updated version of datepicker present on github: https://github.com/eternicode/bootstrap-datepicker.
Read more >Incident Autoclose is not working - ServiceNow Community
The Incident autoclose schedule is not working for some regions. we have used the default BR as mentioned below.
Read more >Auto close not working - WordPress.org
Hi. Auto close does not work for me. I use the snippet from. https://docs.wppopupmaker.com/article/93-automatically-close-popup-after-10-seconds.
Read more >Autoclose on Navbar Dropdown not working
I tried applying the attribute for [autoclose]="true" for one of the dropdown items and tested it as well using "false" to see if...
Read more >autoClose - API Reference - Kendo UI MultiSelect
autoClose Boolean (default: true). Controls whether to close the widget suggestion list on item selection. Example. Edit Preview Open In Dojo.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
if you are using html 5 than you can use (data-date-autoclose=“true” ) for auto closing other-wise you can use autoclose: true in your datepicker directive.
On Fri, Jun 27, 2014 at 2:40 PM, thearyoun notifications@github.com wrote:
Don’t use
class="datepicker"
on your input or it will ignore any options you pass. Just do something like<input class="datepickerx" type="text" />
and then$(".datepickerx").datepicker({ autoclose: true });