Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultEditor.cshtml @ 277:7439d7a5f8d0
Warning HTML: Cambiado ALT por TITLE.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 20 Dec 2011 08:28:33 -0300 |
parents | bf993f99cee3 |
children | 5f1e3d35e113 |
line wrap: on
line source
<h2>@Html.GetTitleForModel()</h2> <p> @Html.GetDescriptionForModel() </p> <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/subpanels-0.9.js")" type="text/javascript"></script> <link rel="stylesheet" href="@Url.Content("~/Content/subpanels-0.9.css")" type="text/css" /> <script type="text/javascript"> $(document).ready(function () { $("form:first").submit(function () { $("#Ponentes option").each(function () { $(this).attr("selected", "selected"); }); }); }); </script> @using (Html.BeginForm( null, null, FormMethod.Post, (ViewData.ModelMetadata.Properties.Count(p => p.ModelType.Name == "HttpPostedFileBase") > 0 ? new { enctype = "multipart/form-data" } : null ) ) ) { @Html.ValidationSummary(true) <div> <fieldset> <legend>@Html.GetLegendForModel()</legend> <div id="content"> @Html.EditorForModel() </div> <div class="buttons"> <input type="submit" value="@LayoutResources.SaveButton" /> @Html.ActionLink(@LayoutResources.CancelButton, "Index") </div> </fieldset> </div> }