There are no forum posts on this topic! Why don't you write one?
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?
Hi,
If you are using the ConvertPage method it will convert whatever is in the page including any section breaks that have been defined.
If you just want to convert a table within the page, why don't you use the ConvertHTML method. Using a bit of JavaScript to select and pass the table as HTML to the method?
I didn't define any section breaks. My goal is to take some container with two-columns and convert it to .docx with all styles. And only one way works for this - to wrap all content to <table>. But for some reason my document begins from the second page on 'Word'
Sorry, I misunderstood. Thanks for raising this issue with us. We have raised a case and we will look at it soon.
Now it works perfectly. Thanks a lot!