Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/DateTime.cshtml @ 167:ea85bd893247
Ajustes menores de UI
author | nelopauselli |
---|---|
date | Sat, 06 Aug 2011 02:51:07 -0300 |
parents | 19bab30521da |
children | a731086c0b28 |
rev | line source |
---|---|
150 | 1 @model DateTime? |
2 <script type="text/javascript"> | |
3 $(document).ready(function () { | |
4 $("#@ViewData.TemplateInfo.GetFullHtmlFieldId(string.Empty)").datepicker({ dateFormat: 'dd-mm-yy' }); | |
5 }); | |
6 </script> | |
167 | 7 @Html.TextBox(string.Empty, (Model.HasValue ? Model.Value.ToShortDateString() : string.Empty), new { style = "width: 80px" }) |