jQWidgets jqxCalendar titleFormat Property
jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful and optimized framework, platform-independent, and widely supported. The jqxCalendar represents a jQuery calendar widget that enables the user to select a date using a visual monthly calendar display.
The titleFormat property is used to set or return the title format for the title section. It accepts array type value and its default value is [“MMMM yyyy”, “yyyy”, “yyyy”].
The possible value of titleFormat property are –
- ‘d’ – It represents the day of the month.
- ‘dd’ – It represents the day of the month.
- ‘ddd’ – It represents the abbreviated name of the day of the week.
- ‘dddd’ – It represents the full name of the day of the week.
- ‘h’ – It represents the hour using a 12-hour clock from 1 to 12.
- ‘hh’ – It represents the hour using a 12-hour clock from 01 to 12.
- ‘H’ – It represents the hour using a 24-hour clock from 0 to 23.
- ‘HH’ – It represents the hour using a 24-hour clock from 00 to 23.
- ‘m’ – It represents the minute from 0 through 59.
- ‘mm’ – It represents the minutes from 00 though 59.
- ‘M’ – It represents the month from 1 through 12.
- ‘MM’ – It represents the month from 01 through 12.
- ‘MMM’ – It represents the abbreviated name of the month.
- ‘MMMM’ – It represents the full name of the month.
- ‘s’ – It represents the second, from 0 through 59.
- ‘ss’ – It represents the second, from 00 through 59.
- ‘t’ – It represents the first character of the AM/PM designator.
- ‘tt’ – It represents the AM/PM designator.
- ‘y’ – It represents the year, from 0 to 99.
- ‘yy’ – It represents the year, from 00 to 99.
- ‘yyy’ – It represents the year, with a minimum of three digits.
- ‘yyyy’ – It represents the year as a four-digit number.
Syntax:
$('.selector').jqxCalendar({ titleFormat: Array });
Linked Files: Download jQWidgets from https://www.jqwidgets.com/download/ link. In the HTML file, locate the script files in the downloaded folder:
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” /> <script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxdatetimeinput.js”></script> <script type=”text/javascript” src=”jqwidgets/jqxcalendar.js”></script> <script type=”text/javascript” src=”jqwidgets/globalization/globalize.js”></script> <script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
The below example illustrates the jqxCalendar titleFormat property in jQWidgets:
Example:
HTML
<!DOCTYPE html> < html lang = "en" > < head > < link rel = "stylesheet" href = "jqwidgets/styles/jqx.base.css" type = "text/css" /> < script type = "text/javascript" src = "scripts/jquery-1.11.1.min.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxcore.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxdatetimeinput.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqxcalendar.js" > </ script > < script type = "text/javascript" src = "jqwidgets/globalization/globalize.js" > </ script > < script type = "text/javascript" src = "jqwidgets/jqx-all.js" > </ script > </ head > < body > < center > < h1 style = "color: green;" > GeeksforGeeks </ h1 > < h3 > jQWidgets jqxCalendar titleFormat Property </ h3 > < div id = 'jqxcal' ></ div > </ center > < script type = "text/javascript" > $(document).ready(function () { $("#jqxcal").jqxCalendar({ width: '400px', height: '300px', titleFormat: "MMMM yy" }); }); </ script > </ body > </ html > |
Output:
Please Login to comment...