I am using twitter bootstrap datepicker (http://www.eyecon.ro/bootstrap-datepicker/), but cant's seem to get it working properly. Whem i click the datepicker it does not have the initial value of the date field it is attached to, but starts somewhere around 1920.
My code looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" media="screen" href="@routes.Assets.at("css/bootstrap.min.css")">
<link rel="stylesheet" media="screen" href="@routes.Assets.at("css/datepicker.css")">
<script src="@routes.Assets.at("js/jquery-1.9.1.min.js")" type="text/javascript"></script>
<script src="@routes.Assets.at("js/bootstrap.min.js")" type="text/javascript"></script>
<script src="@routes.Assets.at("js/bootstrap-datepicker.js")" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$('.datepicker').datepicker();
});
</script>
</head>
<body>
<div class="input-append date datepicker" data-date="@value" data-date-format="dd-mm-yyyy">
<input class="span2" size="16" type="text" value="@value"><span class="add-on"><i class="icon-calendar"></i></span>
</div>
</body>
</html>
@value? Can't reproduce this when@valueis in the same format as the expected date format: jsfiddle.net/mccannf/5DWEJ/1 – mccannf Feb 18 at 23:08@valueis not in the correct date format, this could cause you problems. – mccannf Feb 19 at 20:37