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

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -