Version

DateEditorDataMode Enumeration

Specifies the data mode of DateEditor and DatePicker widgets.
Syntax
'Declaration
 
Public Enum DateEditorDataMode 
   Inherits System.Enum
public enum DateEditorDataMode : System.Enum 
Members
MemberDescription
DateThe value method returns a Date object. When this mode is set the value sent to the server on submit is serialized as ISO 8061 string with local time and zone values by default. The EnableUTCDates option can be used to output a UTC ISO string instead.

For example 10:00 AM from a client with local offset of 5 hours ahead of GMT will be serialized as:

"2016-11-11T10:00:00+05:00"

Note: That is used as default.

DisplayModeTextThe "text" in display mode (no focus) format (pattern) is used to be send to the server and is returned from the value() method (returns a string object).
EditModeTextThe "text" in edit mode (focus) format (pattern) is used to be send to the server and is returned from the value() method (returns a string object).
Requirements

Target Platforms: Windows 8.1, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

View on GitHub