I'm trying to separate my dynamic table in few parts when printing, also to hide/change some css and html output. Example of my table is below:
Date Start Time End Time Block
08:30 AM 08:45 AM x Available
01/05/2016 08:45 AM 09:00 AM Michael Kross
09:00 AM 09:15 AM x Available
09:30 AM 10:00 AM x Available
01/06/2016 10:00 AM 10:30 AM x Blocked
10:30 AM 11:00 AM x Available
11:00 AM 11:45 AM x Blocked
01/07/2016 11:45 AM 12:30 PM x Available
12:30 PM 01:15 PM x Blocked
HTML code:
<table>
<thead>
<tr>
<th>Date</th>
<th>Start Time</th>
<th>End Time</th>
<th>Block</th>
</tr>
</thead>
<cfoutput query="qryTable" group="Date">
<tbody>
<tr>
<td rowspan="#total.recordcount#">#dateFormat(Date,"mm/dd/yyyy")#</td>
</tr>
<cfoutput>
<tr>
<td>#StartTime#</td>
<td>#EndTime#</td>
<td>In this cell I print Name/Available/Block depends on the value from DB</td>
</tr>
</cfoutput>
</tbody>
</cfoutput>
</table>
So first I would like to print each date with time slots separate on each page with heading on each page. Also each x represent check box, so I would like to remove all check boxes when I'm printing my page and remove all words Available(just leave blank space instead), and only print out word Block without check box. I do not have any previous experience with this kind of features in css. If anyone can help please let me know. Thank you.