When updating a record in the grid - it does not allow me to save an empty string for that field - if the previous value in the field contained a value.
My underlying class property doesn't work with either of the following options
with annotations:
[Display(Name = "Comments")] [Required(AllowEmptyStrings = true)] public string ItemComments { get; set; } = " ";
Without annotations:
public string ItemComments { get; set; } = " ";