Hi,
I am using time range selector.
Now I want to set time by 15 or 30 minute, I am facing issue while setting time in range selector.
<script type=”text/javascript”>
$(document).ready(function () {
$(“#rangeSelector”).jqxRangeSelector({
width: 200, height: 10, min: new Date(2014, 5, 1, 0, 0, 0), max: new Date(2014, 5, 1, 23, 59, 59), range: { from: new Date(2014, 5, 1, 11, 30, 0), to: new Date(2014, 5, 1, 12, 15, 30) },
majorTicksInterval: { hours: 24 }, minorTicksInterval: { minutes: 15 }, labelsFormat: ‘hh:mm tt’, markersFormat: ‘hh:mm tt’
});
});
</script>
In this from range is successfully set but To range not able set while i as setting it then given time minus to From range. it is not working. So Please tell how to set this or another solution for that.