Hello
I wanted to have a column which has thousand seprator so I used "GridViewDecimalColumn" but when I typed in the cell the thousand separator
has been disappeared and when I left the cell it was shown again. as the result of this i decided to use "GridViewMaskBoxColumn" insted ,because
it hasnt those problem .
by using GridViewMaskBoxColumn my problem solved but I face to another problem,I need to set maximum value to this column
but I cant define MaximumValue for this column ,please help me to do this.
GridViewMaskBoxColumn dec = new GridViewMaskBoxColumn();
dec.FieldName = "dec";
dec.FormatString = "{0:#,##}";
radGridView1.Columns.Add(dec);
I wanted to have a column which has thousand seprator so I used "GridViewDecimalColumn" but when I typed in the cell the thousand separator
has been disappeared and when I left the cell it was shown again. as the result of this i decided to use "GridViewMaskBoxColumn" insted ,because
it hasnt those problem .
by using GridViewMaskBoxColumn my problem solved but I face to another problem,I need to set maximum value to this column
but I cant define MaximumValue for this column ,please help me to do this.
GridViewMaskBoxColumn dec = new GridViewMaskBoxColumn();
dec.FieldName = "dec";
dec.FormatString = "{0:#,##}";
radGridView1.Columns.Add(dec);