Hi. I need to convert my Html page to .docx . I use GrabzIt('KEY').ConvertPage({'target': '#id', 'format': 'docx', 'download': 1, 'cache' : 0, 'filename' : 'filename, 'bheight' : -1, 'height' : -1, 'waitfor' : '#id'}).Create();
html is created from two-column table:
<table>
<tr>
<td>Content...</td>
<td>Content...</td>
</tr>
</table>
The .docx document is created but the first page is empty because of 'Section break' adding in the top of the first page of 'Word' document. How to avoid of empty first page?