Click here to Skip to main content
15,888,454 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello ,In My Project I am Using Two textbox ,Textbox1 For DatePicker And TextBox 2 For Time Picker ,When I run Project TimePicker PopUp But DatePicker Is Not PopUp,
Any Solution Regarding That Issue,
Here Is Code



This Is for DatePicker

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

<script type="text/javascript">
$(function () {
// birthdate

$("#<%=TxtAppDate1.ClientID %>").datepicker({

yearRange: "1900:2100",
changeMonth: true,
changeYear: true,


});
});

</script>

This Is For TimePicker

<script src="TimePicki-master/js/jquery.min.js"></script>
<script src="TimePicki-master/js/timepicki.js"></script>



<script>
$(document).ready(function () {
$(".time_element").timepicki();
});
</script>
Posted
Comments
jaket-cp 1-Feb-16 4:23am    
check out this fiddle: https://jsfiddle.net/5nq1kzxf/
it appears to work fine
add in the css styling and probably remove
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
Member 12211068 1-Feb-16 7:11am    
Thank u Sir.....

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

  Print Answers RSS


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