Last active
August 29, 2015 13:57
-
-
Save tommarien/9596034 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Modify your settings</h1> | |
@using (Html.BeginForm()) | |
{ | |
<div class="control-group"> | |
<label class="control-label">Birthdate</label> | |
<div class="controls"> | |
<div class="input-append"> | |
<input type="text" name="birthDate" id="birthDate" /> | |
<span class="add-on"> | |
<i class="icon-calendar"></i> | |
</span> | |
</div> | |
</div> | |
</div> | |
} | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
$('#birthDate').datepicker({ | |
dateFormat: 'dd-mm-yy' | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment