Numbering dispearing in IE for word

Hi,
I had a problem with this particular word document which i am attaching with the post.
When i try to produce it through aspose it just keeps disappearing the number and it’s points.
but for some other documents it displays the points,
just wanted to know what’s exactly goin on in the file after it comes out of aspose.
Thanks.

Hi
Thanks for your request. I managed to reproduce the problem and created new issue #7654 in our defect database. I will notify you as soon as it is fixed.
The problem should be first fixed in .NET baseline and then posted to Java. As a workaround, you can open/save this document using MS Word in DOC format.
Best regards.

hi,
It would be really helpful,if you could let me know what’s the cause of this issue…
Was wondering for sometime now?
hope you could help me out by telling me the problem in the file atleast.
Thanks.

Hi
It seems the problem occurs because list is linked to style.
Open document.xml. List items in the document look like the following:

<w:p w:rsidR="0092184D" w:rsidRDefault="0064681B" w:rsidP="0092184D">
	<w:pPr>
		<w:pStyle w:val="ListParagraph" />
		<w:numPr>
			<w:ilvl w:val="0" />
			<w:numId w:val="21" />
		</w:numPr>
	</w:pPr>
	<w:r>
		<w:t>test</w:t>
	</w:r>
</w:p>

As you see list ID is 21. Open numbering.xml and find num with id=21. It looks like the following

<w:num w:numId="21">
    <w:abstractNumId w:val="6" />
</w:num>

If you specify here w:val=“0” all will work fine. <---------------
abstractNum with id=6 is the following:

<w:abstractNum w:abstractNumId="6">
	<w:nsid w:val="2EB637DE" />
	<w:multiLevelType w:val="multilevel" />
	<w:tmpl w:val="D12ACDFC" />
	<w:numStyleLink w:val="NumberedListM" />
</w:abstractNum>

In the styles.xml we can find the following:

<w:style w:type="numbering" w:customStyle="1" w:styleId="NumberedListM">
	<w:name w:val="Numbered List M" />
	<w:rsid w:val="00EE67B1" />
	<w:pPr>
		<w:numPr>
			<w:numId w:val="13" />
		</w:numPr>
	</w:pPr>
</w:style>

In the numbering.xml:

<w:num w:numId="13">
    <w:abstractNumId w:val="0" />
</w:num>

Best regards.

The issues you have found earlier (filed as 7654) have been fixed in this update.

This message was posted using Notification2Forum from Downloads module by aspose.notifier.