annotate Agendas/trunk/src/Agendas.Web/Views/Shared/EditorTemplates/DateTime.cshtml @ 202:a731086c0b28
Se soluciona ticket 174.
Además se agrega detalle del campo Hora y Duración cuando son obligatorios en Resources.
author |
alabra |
date |
Sat, 20 Aug 2011 18:40:36 -0400 |
parents |
ea85bd893247 |
children |
|
rev |
line source |
150
|
1 @model DateTime?
|
|
2 <script type="text/javascript">
|
|
3 $(document).ready(function () {
|
202
|
4 $("#@ViewData.TemplateInfo.GetFullHtmlFieldId(string.Empty)").datepicker({ dateFormat: 'dd/mm/yy' });
|
150
|
5 });
|
|
6 </script>
|
167
|
7 @Html.TextBox(string.Empty, (Model.HasValue ? Model.Value.ToShortDateString() : string.Empty), new { style = "width: 80px" })
|