Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
is this possibility to display two months with the use of ajaxToolkit:CalendarExtender.
Thank you.
Posted
Updated 13-Oct-13 20:46pm
v2
Comments
Thanks7872 14-Oct-13 2:50am    
Not clear at all. If you need help from some one,then at least try to make them understand what you are trying to convey.

1 solution

Hi, I am not sure weather it is possible in ajax calendar extender but in is achiveable in jQuery UI DatePicker [^]
JavaScript
<script type="text/javascript">
   $(document).ready(function () {
       $("#txtDate").datepicker(function() {
           numberOfMonths: 2
       });
    });
</script>
<asp:textbox runat="server" id="txtDate" xmlns:asp="#unknown" /></script>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900