Click or drag to resize
KaxDateInputDisplayDateFormat Property

Gets or sets the display date format used by KaxDateInput.(Visible when the control is not on focus.)

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual string DisplayDateFormat { get; set; }

Property Value

Type: String

A string specifying the display date format used by KaxDateInput. The default value is "d" (short date format). If the DisplayDateFormat is left blank, the DateFormat will be used both for editing and display.

Remarks
You can examine DateTimeFormatInfo class for a list of all available format characters and patterns.
Examples
private void Page_Load(object sender, System.EventArgs e)
{
    KaxDateInput1.DisplayDateFormat = "M/d/yyyy"; //Short date pattern. The same as "d".
}
See Also