Can I able to move the datepicker near the calender icon ??? Any fix for this would be appreciated. datepicker is generated dynamically.
I ha
The 'container' option available in the plugin might come in handy. You can use CSS to position the calendar wherever you need it. Here is an example I have created on jsFiddle.
https://jsfiddle.net/giri_jeedigunta/6patf4L5/
HTML:
JS:
$('.datepicker').datepicker({
container: '#custom-pos'
});
CSS:
#custom-pos {
position: relative;
right: -70px;
}
.dropdown-menu {
left: auto !important;
}