How to remove the current date from the date box .Actually when i open the date box it high light the current date.But user select date example \"14\". If user again open date b
For changing color of the current date from its default theme "a" you can use this:
<input name="mydate" id="mydate" type="date" data-role="datebox" data-options='{"mode": "calbox", "useNewStyle":true, "themeDateToday": "e", "zindex":2000}'/>
Hence current date will be in yellow, instead of blue and choosen date can be default blue.
refer these sites for theming of the call box:
http://dev.jtsage.com/jQM-DateBox2/demos/fullopt.html
http://dev.jtsage.com/jQM-DateBox2/demos/api/themes.html
There is no such setting for month text, so for "Tu We" etc override the class as per below:
.ui-datebox-griddate-label {
height: 15px!important;
line-height: 15px!important;
color: green;
}
To remove the highlighting of current date and only keep the selected date being highlighted you can do this:
But keeping both you would need to modify the datebox's api code itself...