- Date Format
- Header Format
- Day Header
- Tooltip with Formatting
Contact Support
Formatting
17 Jun 20163 minutes to read
Formatting is the way of displaying the date or number as string in some standard format which is based on culture specific or user need.
Below table shows the patterns to format date value.
Format Pattern | Description | Result |
---|---|---|
d |
The day of the month between 1 and 31 |
"1" to "31" |
dd |
The day of the month with leading zero if required. |
"01" to "31" |
ddd |
Abbreviated day name. |
"Mon" to "Sun" |
dddd |
The full day name |
"Monday" to "Sunday" |
|
|
|
M |
The month of the year between 1 - 12 |
"1" to "12" |
MM |
The month of the year with leading zero if required |
"01" to "12" |
MMM |
Abbreviated month name |
"Jan" to "Dec" |
MMMM |
The full month name |
"January" to "December" |
|
|
|
yy |
The year as a two-digit number |
"99" or "08" |
yyyy |
The full four digit year |
"1999" or "2008" |
Date Format
Each culture has some specific date format. Date format defines a format or structure of the displayed date in the textbox of EJWEB DatePicker control. You can change the date format by using DateFormat property
The standard formats are listed as follows
Format Name |
Formats |
---|---|
Default |
"M/d/yyyy" |
Short |
d M, y |
Medium |
d MM, y |
Full |
dddd, d MMMM, yy |
UTC |
yyyy-MM-dd |
By default en-US culture date format is “M/d/yyyy”.
<ej:DatePicker ID="datelocalization" DateFormat="yyyy/dd/MM" runat="server"></ej:DatePicker>
To get the culture and date format of EJWEB DatePicker, refer the below code example
// create instance for datePicker
// only after control creation we can get dateObj otherwise it throws exception
var dateObj = $("#datePicker").ejDatePicker('instance');
dateObj.option('locale'); //returns the culture in string
dateObj.option('dateFormat');// returns the date Format in string
NOTE
by default date format is based on culture specific. You have to refer the required culture specific files in head section of HTML page in order to localize DatePicker and customize different format for that culture.
Header Format
EJWEB DatePicker calendar consists of header, day header, days and footer section. In which header section shows the current view of DatePicker calendar by displaying the selected day or month or year. It can be formatted as like date format by using HeaderFormat property.
<ej:DatePicker ID="datelocalization" HeaderFormat="MMMM yyyy" runat="server"></ej:DatePicker>
Day Header
Day header determines the days name to be displayed in terms of short, medium and long in EJWEB DatePicker calendar by using DayHeaderFormat property. Also the DatePicker calendar size varies with this specified values.
<ej:DatePicker ID="datelocalization" DayHeaderFormat="Long" runat="server"></ej:DatePicker>
Tooltip with Formatting
EJWEB DatePicker calendar shows tooltip on hovering the date by specifying the formatted date of hovered date. Its helps you to get clear view about the date going to select. You can show or hide this tooltip option by using ShowTooltip property.
You can also change the format of tooltip by using “tooltipFormat†property. Below codes example allows to show tooltip and format its value.
<ej:DatePicker ID="datepick" ShowTooltip="true" TooltipFormat="dd/MM/yy" runat="server"></ej:DatePicker>