This was asked on the old mailing list, I never saw a response:
I would like to make the edit portion of the UltraDateTimeEditor control non-editable (probably not a real word) and force the user to select a date only from the dropdown portion of the control.Is this possible?
Cheers,
EDIT: This was posted in the wrong forum it looks like. Would an admin please mod? Thank you.
This is something not supported in infragistics but required behavior can be achieved by handling KeyPress event.
private void ultraDateTimeEditor1_KeyPress(object sender, KeyPressEventArgs e) { e.Handled = true; }