Update: I don't want to manually specify the date format as the different culture may have different date format. As a result, if I specify the dateFormat the Australian standard, and users are in China , it may also cause problems.So what I want is how to automatically pick up the dateFormat relating to the local culture with jQuery.
I found an interesting issue on jQuery DatePicker.
when I run my web application on my machine, everything goes well, no issues at all. But after I configured it on the web server, then the value of selected date from the jQuery DatePicker will add automatically a " :" (a white space and a colon) at the end.
E.g. the actual date picked is 08/23/2012, the tbDate.Vale will be 08/23/2012 :
I can be easily fixed buy trim() and substring() methods, but if I go this way I have to change all code which I applied the DatePicker and then re-compile the code then upload the dll to server.
So I want to ask 2 questions: 1. Why does this happen? 2. How to fix it in a general and global way? (like add some configure in Web.config file)
I am waiting for your answers.
Thanks in advance.
Here is the jQuery reference
<script src="Resource/JS/jquery-1.7.2.min.js" type="text/javascript"></script>
<link href="Resource/css/jquery-ui-1.8.21.custom.css" rel="stylesheet" type="text/css" />
<script src="Resource/JS/jquery-ui-1.8.21.custom.min.js" type="text/javascript"></script>
The function to pop-up DatePicker:
function showDatePicker(datepicker) {
var id = "#" + datepicker;
$(function () {
$(id).datepicker();
});
}
</script>
The input component:
<input id="tbActionDate" type="text" runat="server" class="datePickerControl" clientidmode="Static" onclick="showDatePicker('tbActionDate');" />
