ParamQuery grid support forum

General Category => Suggest new features => Topic started by: akraines on December 17, 2019, 09:40:30 pm

Title: Wrap column headers in thead tag when exporting to Html
Post by: akraines on December 17, 2019, 09:40:30 pm
Hi,

There is a small bug in the export to html code: It doesn't wrap header columns in <thead></thead>. This means that if you try print the table and it is a few pages long, it will not repeat the columns headers on each printed page. If you simply wrap the header with <thead></thead> and the body with <tbody></tbody> then it works as expected.
The correct table structure should look something like this:
<table>
 <thead>
  <tr>
   <th></th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td></td>
  </tr>
 </tbody>
</table>
Title: Re: Wrap column headers in thead tag when exporting to Html
Post by: paramvir on March 18, 2020, 10:29:14 pm
This is done in v7.
Title: Re: Wrap column headers in thead tag when exporting to Html
Post by: akraines on March 19, 2020, 03:44:25 am
Thanks - I noticed :-)
(I looked at the diff of the new version since if it wasn't done I would have had to re-add it)