Date Picker with Multilingual support in Asp.net

410 views Asked by At

Anyone have any experience on doing a popup date picker with multilingual support, based on the culture itself automatically?

I do try to do it but I am failed to do it. Anyone have any resources that can do it? I am mainly doing for two languages which is en-US and zh-TW. Thanks.

1

There are 1 answers

4
hud On BEST ANSWER

You are not adding the Jquery and CSS reference, that's why you are not able to see the Jquery Calendar.

Try the below code:-

Jquery and CSS reference

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

Also, you must call the selectori.e ID for it to work

$(function () {
        $("#datepicker").datepicker();
    });

See the Working Demo