I have a column with which get's edited using the ListViewDateTimeEditor.
The question is, how do I format the value that gets submitted to the ListView.
To be clear, I have already formatted the ListViewDateTimeEditor to use the following:
Dim
Editor
As
New
ListViewDateTimeEditor
TryCast(Editor.EditorElement, BaseDateTimeEditorElement).Format = DateTimePickerFormat.Custom
TryCast(Editor.EditorElement, BaseDateTimeEditorElement).CustomFormat =
"MM/dd/yyyy"
e.Editor = Editor
Even with this formatting, it still submits the full DateTime to the ListView when finished editing. How do I make it output only the formatted Date value, without the Time?