I am using a calendar system (pinpoint) on a website however the website users are no understanding the process of the calendar.
A user selects a date and is then presented with a list of times for that date.
The user can only select one time, however pinpoint requires them to click a start and end time. As the start and end time is the same time, they effectively have to double click their chosen time.
Despite adding descriptive text highlighting this, the users are getting muddled and fail to double click their time.
I have tried to force a double click using javascript, however it is not working
The hours popup looks like this
And here is a video showing the double click requirement
Have I missed something?
Thanks
A user selects a date and is then presented with a list of times for that date.
The user can only select one time, however pinpoint requires them to click a start and end time. As the start and end time is the same time, they effectively have to double click their chosen time.
Despite adding descriptive text highlighting this, the users are getting muddled and fail to double click their time.
I have tried to force a double click using javascript, however it is not working
Code:
<script type='text/javascript'>
$('.DOPBSPCalendar-hour').click(function() {
$('.DOPBSPCalendar-hour').dblclick();
});
</script>
The hours popup looks like this
PHP:
<div class="DOPBSPCalendar-hours" id="2_2017-01_hours" style="display: block;">
<div class="DOPBSPCalendar-hour dopbsp-available dopbsp-selected" id="2_17:30">
<div class="dopbsp-bind-top">
<div class="dopbsp-hour"> </div>
</div>
<div class="dopbsp-bind-middle dopbsp-group0">
<div class="dopbsp-hour">17:30 - 18:15</div>
<div class="dopbsp-price">£5</div>
<div class="dopbsp-available">18 available</div>
<div class="dopbsp-info" id="2_17:30_info"></div>
</div>
<div class="dopbsp-bind-bottom">
<div class="dopbsp-hour"> </div>
</div>
</div>
</div>
And here is a video showing the double click requirement
Have I missed something?
Thanks