Hello Telerik Team
I want to have a column in radgrid which type is float or decimal ,but I dont want to have a fix decimal point .for example I want to enter number 2.35 or 123,4.6589 so I use the code bellow
GridViewDecimalColumn DecimalColumn = new GridViewDecimalColumn();
DecimalColumn .Width = 150;
DecimalColumn .Name = "Decimal";
DecimalColumn .HeaderText = "Decimal";
DecimalColumn .ThousandsSeparator = true;
radGridView1.Columns.Add(DecimalColumn);
but there is a problem with thousandsSeparator .when I am typying number in the cell and when I leave the cell there is no thousandsSeparator
please help me.
thank you
I want to have a column in radgrid which type is float or decimal ,but I dont want to have a fix decimal point .for example I want to enter number 2.35 or 123,4.6589 so I use the code bellow
GridViewDecimalColumn DecimalColumn = new GridViewDecimalColumn();
DecimalColumn .Width = 150;
DecimalColumn .Name = "Decimal";
DecimalColumn .HeaderText = "Decimal";
DecimalColumn .ThousandsSeparator = true;
radGridView1.Columns.Add(DecimalColumn);
but there is a problem with thousandsSeparator .when I am typying number in the cell and when I leave the cell there is no thousandsSeparator
please help me.
thank you