I'm struggling to incorporate a Date Time input system into my bootstrap form. I've tried multiple examples, but none seem to be working for me.
Now, I came across this site and attempted to implement their solution, but still no luck:
<div class="input-append date form_datetime" data-date="2013-02-21T15:25:00Z">
<input size="16" type="text" value="" readonly>
<span class="add-on"><i class="icon-remove"></i></span>
<span class="add-on"><i class="icon-calendar"></i></span>
</div>
<script type="text/javascript">
$(".form_datetime").datetimepicker({
format: "dd MM yyyy - hh:ii",
autoclose: true,
todayBtn: true,
startDate: "2013-02-14 10:00",
minuteStep: 10
});
</script>
Can anyone provide some guidance on what steps I should take next?