Datetimepicker plugin
See original GitHub issueI tried a simple test with the following filter, when attempting to getRule, it throws an error that the input is NULL.
$('#builder-widgets').queryBuilder({
plugins: ['bt-tooltip-errors'],
filters: [{
id: 'date',
label: 'datetimepicker',
type: 'datetime',
plugin: 'datetimepicker',
plugin_config: {
}
}]
});
Not sure why the input would return an empty value (https://eonasdan.github.io/bootstrap-datetimepicker/). No error thrown in console.
Issue Analytics
- State:
- Created 8 years ago
- Comments:11 (5 by maintainers)
Top Results From Across the Web
10 Best Date And Time Picker JavaScript Plugins (2022 Update)
datetimepicker is a jQuery plugin that popups a simple and clean date & time picker interface when an input field on focus.
Read more >DateTimePicker - XDSoft.net
DateTimePicker jQuery plugin select date and time. Use this plugin to unobtrusively add a datetimepicker, datepicker or timepicker dropdown to your forms.
Read more >jQuery Date and Time picker
search. Search jQuery Plugin Registry. jQuery Date and Time picker. by Chupurnov Valeriy. jQuery plugin for date, time, or datetime manipulation in form ......
Read more >xdan/datetimepicker: jQuery Plugin Date and Time Picker
datetimepicker · DatePicker · TimePicker · Options to highlight individual dates or periods · JS Build help. Requires Node and NPM Download and...
Read more >24 jQuery Date And Time Pickers - Free Frontend
DateTime Picker is a quick highly customizable jQuery plugin. The design is clutter free & well suited for embedding it into mobile application ......
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 Free
Top 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
But you don’t need it anymore, the doc says to use
input_event: 'dp.change'
The problem is that the author of the library decided to not fire the standard “change” event on the input when the datepicker is closed, thus QueryBuilder can’t be updated.
You need to manually trigger the “change” event when the date picker is updated (see DP doc about events).
In a next version I’ll provide a way to teach QueryBuilder which events to listen to