Multiple-Dates-Picker-for-jQuery-UI
Multiple-Dates-Picker-for-jQuery-UI copied to clipboard
altField is not working with pickableRange
Hi,
I am trying to use altField & pickableRange together but somehow it's not working.
Issue: if I use both together then only last selected date is showing into input using altField.
Please verify and let me know what need to do. http://jsfiddle.net/jm3cpdfc/5/
Thanks in advance Nitesh Mittal
@niteshmittal Did you find any workaround??
I solved this by doing it more manually and using the onSelect option.
onSelect : function() { $('#date-range-picker').val($('#date-picker-holder').multiDatesPicker('value')); }
date-picker-holder being the holder for the calendar and date-range-picker being the input to put the value.