This question is locked. New answers and comments are not allowed.
I'm trying to make a TKDataFormDatePickerEditor to load with an empty date field but the TKDataFormDatePickerEditor always shows today date. Here's what I'm doing in the UpdateEditor method after setting the value candidate to null.
if (property.Name == "StartDate") { if (this.ownerVC.dataSource ["StartDate"].ValueCandidate == null) { ((TKDataFormDatePickerEditor)editor).EditorValueLabel.Text = string.Empty; }}