HTML > Word and ordered lists

Hello,
I am trying to insert an ordered list along the lines of

A. Level 1
   1. Level 1.1

The key features are list-by-letter in the top level and list-by-number in the next level.
I can get the list-by-letter to work but the second level becomes (a), (b), © etc.
The HTML I am using is:

<ol type="A">
    <li>
        Level 1
        <ol style="list-style-type:decimal">
            <li style="list-style-type:decimal"> Level 1.1</li>
        </ol>
    </li>
</ol>

I have tried to use styles and attributes (i.e. <li type="1">) with no success.
I’m not sure if this is a general issue. Apologies if it has been covered before.
Kind regards,
Franco

Hi

Thanks for your request. I managed to reproduce the problem on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is resolved.
If you need just build multilevel list in your document, you can achieve this using DocumentBuilder. Please see the following link for more information:
https://reference.aspose.com/words/net/aspose.words.lists/listlevel/
Hope this helps.
Best regards.

The issues you have found earlier (filed as WORDSNET-1203) have been fixed in this .NET update and this Java update.

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