Posted 9 November 2022, 3:59 pm EST - Updated 9 November 2022, 4:04 pm EST
C1FlexGrid, clear date in a cell
Posted by: eliseu on 9 November 2022, 3:59 pm EST
-
-
Posted 10 November 2022, 2:43 am EST
Hello Eliseu,
The default editor for the DateTime column is MS DateTimePicker and it is the default behavior of the DateTimePicker.
To achieve your requirement you can use the C1DateEdit controls as the Editor of the DateTime column.c1DateEdit1.EmptyAsNull = true; c1DateEdit1.NullText = ""; c1FlexGrid1.Cols[dateTimeColumnIndex].Editor = c1DateEdit1;
Please find the attached sample implementing the same.
Regards,
Prabhat Sharma.