I'm using "Bootstrap Material DatePicker" (see http://t00rk.github.io/bootstrap-material-datetimepicker) and everything works fine, I need change pop-up mode to inline mode
<input type="text" class="form-control" id="START_DATE" />
$(document).ready(function () {
$("#START_DATE").bootstrapMaterialDatePicker({
format: 'DD-MMM-YYYY',
date: true,
time: false,
year: true
})
});