view Agendas/trunk/src/Agendas.Web/Views/Shared/DefaultEditor.cshtml @ 225:f23ee59ef1bd

Otros ponentes
author nelopauselli
date Mon, 26 Sep 2011 08:47:01 -0300
parents b9850b647a4e
children b43dc14886e3
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 () {
			$("#OtrosPonentes option").each(function () {
				$(this).attr("selected", "selected");
			});
		});
	});
</script>

@using (Html.BeginForm())
{
    @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>
}