I recently added a Time Picker to my project, but I'm experiencing an issue where the slider buttons for selecting time are not showing up.
Could you please refer to this image:
Checking the console, there don't seem to be any errors present.
Let me share the snippet of code I am currently utilizing:
<script type="text/javascript">
$(function () {
$("#timeField").datetimepicker(
{
minDate: 0,
timeFormat: "hh:mm TT"
}
);
});
</script>
These are the plugins I have included in my project:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link href="http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.css" rel="stylesheet" type="text/css">
<script src="http://trentrichardson.com/examples/timepicker/jquery-ui-timepicker-addon.js" type="text/javascript">
<script src="http://trentrichardson.com/examples/timepicker/jquery-ui-sliderAccess.js" type="text/javascript">
Any insights on what might be causing this issue?