Hi Team,
Once page is loaded, Textbox is binded with date.
If textbox is clicked, calendar need to show. But in my case its not showing.
I followed the below way and installed Jquery in NuGetpackage. but no luck.
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(document).ready(function () {
$(".getdate").each(function () {
$(txtPROJECTFROMDATE).datepicker();
});
});
@Html.TextBoxFor(m => m.projectUpload.PROJECTFROMDATE, new { @id = "txtPROJECTFROMDATE", @class = "getdate" })
Thanks in Advance.