hi
I use ultratexteditor. when I input it righttoleft character and digit together, show me:
12345الف
all digit in left and alphabet in right
how I do fix it?
I use infragistics 14 when I set righttoleft = true for example in ultralable and set text = : نام کاربری
this text shown: نام کاربری:
but in latest version this shown correctly
hi I use infragistics 14
when I set righttoleft = true for example in ultralable and set text = : نام کاربری
this text shown:
نام کاربری:
in latest version this shown correctly
Hello Fatemeh,
I am glad that you were able to solve this issue.
Please let me know if you need any further assistance on it.
Thank you for using Infragistics Components!
hi thanks , my issue is fixed
When the cell is not in edit mode, the UltraGrid draws the text using GDI+, which is what Microsoft DotNet uses. When the cell goes into edit mode, it is showing an inner TextBox control which uses GDI. There is no way to force the inner TextBox to use GDI+, but alternatively you can set up the UltraGrid to use GDI. As older graphic device interface, GDI is a bit slower than GDI+ but you have to fill the UltraGrid with more complex data, in order to notice the difference. For further reference about what is the new in GDI+, please refer to the following Microsoft`s article:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms533797%28v=vs.85%29.aspx
Therefore in order to fit your requirements, look for the UltraGrid`s property TextRenderingMode and change it to GDI. This also works for the UltraTextEditor and any control that has TextRenderingMode property.
I am waiting for your feedback.