But I found another strange problem; the DateTime column crash the application (System.NullReferenceException), when I try to add a new row and then to edit it.
A sample of the column:
sfDataGrid1.Columns.Add(new GridDateTimeColumn()
{
MappingName = "Date",
HeaderText = "Data",
ColumnMemberType = typeof(DateTime),
Pattern = DateTimePattern.ShortDate,
AllowNull = true
});