Completed
Last Updated: 03 Aug 2014 21:45 by KennethMoss
ADMIN
Dimitar
Created on: 23 Jun 2014 13:39
Category: GridView
Type: Bug Report
1
FIX. RadGridView, GridViewMaskBoxColumn - when the MaskType property is set to FreeFormDateTime the date is not parsed.
To reproduce:
- Add the following column to a blank grid and new row or edit the existing one:
GridViewMaskBoxColumn maskBoxColumn = new GridViewMaskBoxColumn();
maskBoxColumn.Name = "Dates";
maskBoxColumn.HeaderText = "Dates";
maskBoxColumn.MaskType = MaskType.FreeFormDateTime;
maskBoxColumn.DataType = typeof(System.DateTime);
radGridView1.MasterTemplate.Columns.Add(maskBoxColumn);
this.radGridView1.Rows.Add(DateTime.Now.AddDays(5));


1 comment
KennethMoss
Posted on: 03 Aug 2014 21:45
has there been any updates if this is going to be fixed?