Switching Table View from Left-to-Right
Solved
General and Desktop
-
I've developing an application in which an employee can request a vacation request. This request will be automatically forwarded for another manager in case the first one ignores it. This application is linked to database Microsoft SQL server. Now I need to translate it to an Arabic version. This is the English version
The expected output is
Is this possible and how?
-
http://doc.qt.io/qt-5/qwidget.html#layoutDirection-prop
tableView->setLayoutDirection(Qt::RightToLeft);
should be enough to do the trick