JQuery DatePicker widget showing next, previous png image icons as well as "Next" "Prev" text overlapping those icons -
inspite of referencing required .js , .css file along script tag code required in .aspx page below,
<link href="../styles/jquery.ui.all.css" rel="stylesheet" type="text/css" /> <link href="../styles/jquery.ui.datepicker.css" rel="stylesheet" type="text/css" /> <link href="../styles/jquery.ui.theme.css" rel="stylesheet" type="text/css" /> <link href="../styles/jquery.ui.base.css" rel="stylesheet" type="text/css" /> <script src="../scripts/1.7.2.jquery.min.js" type="text/javascript"></script> <script src="../scripts/jquery-1.11.0.min.js" type="text/javascript"></script> <script src="../scripts/jquery.min.js" type="text/javascript"></script> <script src="../scripts/jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $("txtb_todate").datepicker({ changemonth: true, changeyear: true, dateformat: 'dd/mm/yy' }); }); </script>
the datetime picker showing next, previous month's png icon images along "next", "previous" text written on images.
try adding custom text previous , next months, in case empty string:
$(function () { $("txtb_todate").datepicker({ changemonth: true, changeyear: true, dateformat: 'dd/mm/yy', prevtext: "", nexttext: "" }); });
Comments
Post a Comment