Completed
Last Updated: 19 Jun 2017 12:07 by ADMIN
ADMIN
Dimitar
Created on: 10 Feb 2017 10:44
Category: GridView
Type: Bug Report
1
FIX. RadGridView - when RadDateTimeEditor is used and the Mask is set to FreeFormDateTime the value is not saved when one presses tab in the new row.
To reproduce:
- Add DateTime columns to the grid and set the MaskType of the editor to FreeFormDateTime.
- Go to the new row enter a valid date and press Tab.

Workaround:
class Myditor : RadDateTimeEditor
{
    public override bool IsModified
    {
        get
        {
            return true;

        }
    }
}
0 comments