I'm doing a Purchase Order using the ExecuteNestedGroup on the mail merge feature of DocIO in ASP.NET. Pretty pleased with how its working except for one thing.
I have created a single row table in Word to contain the items in the purchase order. In the first cell I have merge fields {BeginGroup:Items}{OrderCode} and in the last cell I finish it with {EndGroup:Items} It's nicely creating a new row in the table for each item on the purchase order. Far easier than any other third party component I've used, so that's a big plus.
So my problem is that because of the column width I require for the first column, those first couple of merge fields wraps over four lines, sort of like this:
-------------
{BeginGr
oup:Items}
{OrderCo
de}
------------
The word template then resizes the table row to fit that data. Now when I do the actual merge, the cell gets the data which only takes one line and then it has a heap of white space below it, like this:
-------------
ABC123
-------------
I get that Word has just used the row spacing from the template document but is there anyway of collapsing the table row so it fits properly?
Thanks
Jeff
BTW. I noticed the other post got moved to ASP.NET Core Forum. The reason I have posted here is when I tried to post in ASP.NET Core it was insisting on a component name, which did not contain DocIO. When I tried to post without specifying a component, it kept crashing.