@alexey.noskov , since we are not able to upload the documents, can we share the documents through email? Can you please share your aspose email so that we can send the jrxml and sample document?
@alexey.noskov Please confirm if you have received the mail from Murugan Kamalakannan with the documents
@sivawitu Yes, thank you I have received the files. I will forward them to our Aspose.Words for Jasper Reports developer.
@sathiyaraj
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): WORDSJR-373
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
@sivawitu Unfortunately, there are no news regarding the issue yet. We will keep you updated and let you know once there are news regarding it.
@anatoly.sidorenko
I had gone through the below FAQ page in order to get more information about the paid support. All None of the links work and they redirect to the same page. Please let us know how to get paid support
https://helpdesk.aspose.com/kb/faq/3-Enterprise-Support-Key-Benefits-Conditions
@sivawitu Please contact our sales team in Aspose.Purchase forum. My colleagues from sales team will hep you with purchasing payed support subscription.
I created AWExporterParameter.ALLOW_HTML_LISTS and it help to render text field with tag li inside as word list
currentExporter.setParameter(AWExporterParameter.ALLOW_HTML_LISTS, true);
By default this parameter set to false for compatibility with older version
The issues you have found earlier (filed as WORDSJR-373) have been fixed in this Aspose.Words for JasperReports 24.6 update.
Currently we are using below object for set the Parameter.
AWDocxExporter exporter = new AWDocxExporter();
But there is no option “ALLOW_HTML_LISTS” set the html lists.
kindly could you please guide us on this?
Hi @sathiyaraj
I created test and find that this code in jrxml with new 24.6 release and AWExporterParameter.ALLOW_HTML_LISTS work fine and create nested ordered list:
<textField isStretchWithOverflow="true">
<reportElement positionType="Float" x="0" y="181" width="504" height="60" isRemoveLineWhenBlank="true" uuid="441f80d1-aafb-45b1-9b60-3eee25a89d49"/>
<textElement textAlignment="Justified" verticalAlignment="Top" markup="html">
<font fontName="Arial" size="10" pdfFontName="Helvetica"/>
</textElement>
<textFieldExpression><![CDATA["<ol><li>Test<ol type=\"a\"><li>Test1</li><li>Test2</li></ol><ol type=\"i\"><li>Test3</li><li>Test4</li></ol></li><li>Test One</li></ol> " +
"<span style=\"display:left\"><ul><li>Test1</li><li>Test2</li><li>Test3</li></ul></span>"]]>
</textFieldExpression>
</textField>
Hi @anatoly.sidorenko
Okay. But we need to bring out the changes dynamically like below
- Test
i. --------
ii. ---------
iii. -------- - TestTwo
a. ------
b. ------
c. ------ - Test Three
a.--------
b. -------
Incase if I delete point no 2, - The point no 3 should be changed to 2
- If I add one more point under 3, the next point should be 4
likewise it should work automatically.
Can you have any idea? If yes, could you please guide me on this?
@sathiyaraj Thank you for additional information. We will check one more time and provide you more information.
Aspose Words for Jasper Reports only take jprint from Jasper report and convert it to docx.
You can generate lists in Jasper dynamically but generated jprint contains only static text.
If you want to use html ordered list, you should be sure that all layers of ordered list located in one textFieldExpression block.
Hi @anatoly.sidorenko I am not clear on above point. Whether it is possible or not?.
Adding all content in single textFieldExpression is not possible because jasper has some limitation.
So we can’t add all the content in single textFieldExpression.
If you have some other idea, please let us update.