I used this, it only gives me a datepicker,
<script src="~/Scripts/jquery-ui-1.12.1.min.js"></script>
<script>
$(function () {
$(".datepicker").datepicker(
{
dateFormat: "yy/mm/dd ",
timeFormat: "hh/mm",
changeTime: true,
changeMonth: true,
selectpicker : true,
});
});
</script>