-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dir="auto" does not affect the table tag #123
Comments
This is noted somewhere, probably in the RTL issue. The problem is that with row spans and col spans, the table code is quite complex. |
Hi, any news on this issue? |
Hello any news? @danfickle |
It seems we need to push this up the priority list. |
Yes thanks, it's a key feature without it RTL is not really complete it's not only about text. |
Hello @danfickle any updates here? |
@danfickle any update about RTL Direction of table?? i need Urgent Can you Please solved in these days |
Hello @wahab321 . If you are looking for urgent soution you may replace the following code in TableSectionBox.java sourse: new code for RTL tables only: if(parent != null){ It solved for me an alignment issue in RTL tables. |
thanks it work's for me |
It does not cause the table column itself to be rendered from Right to Left. Because of which the layout in the browser and the PDF differs a lot.
Consider a cell which appears on the left side for English. Now when the pdf language changes to Arabic the cell must come on the right and the text within that should be RTL.
But what actually happens is the cell stays left and the text within the cell is RTL.
i.e., The columns do not run from right to left in tables when the tag is dir="auto"/"rtl"
HTML
PDF
The text was updated successfully, but these errors were encountered: