I have a table (id=’MainTable’) where I am displaying availability records and inside the Main Table I have a table with checkboxes for the available time. The checkboxes in the Inner Table will be different in number and there will 1 or more than 1 checkboxes for each record in a table. e.g the Inner Table of first line can have 5 checkboxes and can have 3 checkboxes for the second line and so on.
A user can check 1 or more than 1 checkboxes of a specific line of Inner Table but in a sequence/consecutive to book an assessor for more than 1 hour.
E.g In the first line a user can select either a checkbox with “08:00 AM - 09:00 AM” and “09:00 AM - 10:00 AM” to make 2 hours but can’t select “08:00 AM - 09:00 AM” and “12:00 PM - 01:00 PM” to make 2 hours because they are not consecutive checkboxes.
E.g In the second line a user can select either a checkbox with “09:30 AM - 10:30 AM” and “10:30 AM - 11:30 AM” to make 2 hours but can’t select “09:30 AM - 10:30 AM” and “05:00 PM - 06:00 PM” to make 2 hours because they are not consecutive checkboxes.
I have a different id for the Inner Table
I am only providing HTML of the Inner Table:
<table width="100%" border="0" id="Tab_13322918">
<tbody>
<tr>
<td style="font-size:10px;color:brown">
<input type="checkbox" value="08:00 AM - 09:00 AM"> 08:00 AM - 09:00 AM
</td>
<td style="font-size:10px;color:brown">
<input type="checkbox" value="09:00 AM - 10:00 AM"> 09:00 AM - 10:00 AM
</td>
</tr>
<tr>
<td style="font-size:10px;color:brown">
<input type="checkbox" value="12:00 PM - 01:00 PM"> 12:00 PM - 01:00 PM
</td>
<td style="font-size:10px;color:brown">
<input type="checkbox" value="01:00 PM - 02:00 PM"> 01:00 PM - 02:00 PM
</td>
</tr>
<tr>
<td style="font-size:10px;color:brown">
<input type="checkbox" value="02:00 PM - 03:00 PM"> 02:00 PM - 03:00 PM
</td>
</tr>
</tbody>
Please see pic for more info.[ATTACH]15741[/ATTACH]
The attachments of this post were removed during the platform migration in 2018