Posted 09 Oct 2012 Link to this post
Posted 10 Oct 2012 Link to this post
Thank you for writing. You can access the DateTime editor in the CellEditorInitialized event, for example:
void
radGridView1_CellEditorInitialized(
object
sender, GridViewCellEventArgs e)
{
RadDateTimeEditor editor = e.ActiveEditor
as
RadDateTimeEditor;
if
(editor !=
null
)
RadDateTimeEditorElement element = editor.EditorElement
RadDateTimeEditorElement;
element.MinDate =...;
element.NullDate=...;
}
Posted 11 Oct 2012 Link to this post
Posted 12 Oct 2012 Link to this post
Thank you for sharing your solution with the community. I am sure that someone will benefit from it.