You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating from Simple Api to ODFDOM the table search doesn't find the underlying tables from the .odf Files anymore. var count = TextDocument.loadDocument("AFile.odm").getTableList().size() was about 28 Tables var count = OdfTextDocument.loadDocument("AFile.odm").getTableList(true).size() is now 2
In which way do i need to adjust my code to get a complete Table List?
The text was updated successfully, but these errors were encountered:
Could you please give this test a try and adopt this test with your test file adding it to
odfdom/src/test/resourcestest-input
As the parameter is true in your example it is a recursive search all <table:table> should be found.
Otherwise, you might even give the debugger a try! :-)
Aye, it is a master document and other documents are external and referenced from the master document, which are likely not being searched.
If you like to add this functionality, you might want to copy/paste it from the Simple API (once added by IBM).
After updating from Simple Api to ODFDOM the table search doesn't find the underlying tables from the .odf Files anymore.
var count = TextDocument.loadDocument("AFile.odm").getTableList().size()
was about 28 Tablesvar count = OdfTextDocument.loadDocument("AFile.odm").getTableList(true).size()
is now 2In which way do i need to adjust my code to get a complete Table List?
The text was updated successfully, but these errors were encountered: