Hello, we have a RadGridview with a number column and a activated filter for this Grid. If we want to filter data by the value "123" the input in the filter textBox is shown as "321.00" (right-to-left). This is no problem by columns with text values. And at the line for a new data row the input is correct, too.
Declining this item due to lack of additional information. Once such information is provided it will be reopened.
Hello, Following the provided information, I was unable to replicate the described problem in RTL mode. Here is my code snippet: public RadForm1() { InitializeComponent(); GridViewDecimalColumn decimalColumn = new GridViewDecimalColumn("Numeric"); decimalColumn.DecimalPlaces = 2; decimalColumn.FormatString = "{0:N2}"; radGridView1.MasterTemplate.Columns.Add(decimalColumn); this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill; this.radGridView1.EnableFiltering = true; Random rand = new Random(); for (int i = 0; i < 100; i++) { this.radGridView1.Rows.Add(rand.Next(1,300)); } this.radGridView1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; } Could you please specify the exact steps how to reproduce the problem? I would recommend you to submit a ticket where you can provide additional details about the precise case and a sample project as well. Thus, our support engineers will gladly assist you. Thank you in advance for your cooperation.