Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultEditor.cshtml @ 257:730b80afa70d
Ticket #191: Perfil de Usuarios
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 19 Oct 2011 09:19:20 -0300 |
parents | b43dc14886e3 |
children | bf993f99cee3 |
rev | line source |
---|---|
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
1 <h2>@Html.GetTitleForModel()</h2> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
2 <p> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
3 @Html.GetDescriptionForModel() |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
4 </p> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
5 |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
6 <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
7 <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
8 |
219
b9850b647a4e
Agregando alta de ponente durante la carga del evento
nelopauselli
parents:
208
diff
changeset
|
9 <script src="@Url.Content("~/Scripts/subpanels-0.9.js")" type="text/javascript"></script> |
b9850b647a4e
Agregando alta de ponente durante la carga del evento
nelopauselli
parents:
208
diff
changeset
|
10 <link rel="stylesheet" href="@Url.Content("~/Content/subpanels-0.9.css")" type="text/css" /> |
b9850b647a4e
Agregando alta de ponente durante la carga del evento
nelopauselli
parents:
208
diff
changeset
|
11 |
225 | 12 <script type="text/javascript"> |
13 $(document).ready(function () { | |
14 $("form:first").submit(function () { | |
238 | 15 $("#Ponentes option").each(function () { |
225 | 16 $(this).attr("selected", "selected"); |
17 }); | |
18 }); | |
19 }); | |
20 </script> | |
21 | |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
22 @using (Html.BeginForm()) |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
23 { |
208
607384590bf8
Mejorando el mensaje de error que se muestra cuando hay un error de validación del lado del servidor
nelopauselli
parents:
168
diff
changeset
|
24 @Html.ValidationSummary(true) |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
25 <div> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
26 <fieldset> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
27 <legend>@Html.GetLegendForModel()</legend> |
168 | 28 <div id="content"> |
29 @Html.EditorForModel() | |
30 </div> | |
31 <div class="buttons"> | |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
32 <input type="submit" value="@LayoutResources.SaveButton" /> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
33 @Html.ActionLink(@LayoutResources.CancelButton, "Index") |
168 | 34 </div> |
155
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
35 </fieldset> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
36 </div> |
23aaf98b8377
Generalizando editores en EditorDefault basando los textos en recursos
Nelo@Guinea.neluz.int
parents:
diff
changeset
|
37 } |