Hello,
Currently, if I add a GridViewDateTimeColumn into a RadGridView, I can only edit the date component and I don't have a TimePicker part, even though I choose a DateTimePicker component as EditorType property. I'm even not allowed to set the time by typing it.
I also tried to trigger it manually with the following code, without any success:
var startDateColumn = radGridView1.Columns[
"StartDate"
]
as
GridViewDateTimeColumn;
var picker = startDateColumn?.GetDefaultEditor()
as
RadDateTimeEditor;
var editor = picker.EditorElement
as
RadDateTimeEditorElement;
editor .ShowTimePicker =
true
;
How can I enable both date & time editing on a GridViewDateTimeColumn?
Windows 10 - VS2017 - .NET Framework 4.6.1 - Telerik R1 2019 - Fluent theme