I've changed the format string in a date time editor, and it works as expected.
ultraDateTimeEditorStart.FormatString = "yyyy/MM/dd";
However, when this component receives focus its format is changed back to a default "MM/dd/yyyy"
Is there a setting I am missing?
Hello,
In order to achieve what you are looking for you could set the MaskInput property like:
ultraDateTimeEditor1.MaskInput = "yyyy/mm/dd";
Please let me know if you have any further questions with this matter.
I tried the above suggestion. When the editor receives focus it now shows "yyyy/MM/dd", literally, with no date.Perhaps I am still missing something?