28 lines
No EOL
1.2 KiB
Text
28 lines
No EOL
1.2 KiB
Text
@using Kreta.Resources
|
|
@using Kreta.Web.Areas.Tanulo.Models
|
|
@model TanarTanitottTanulokStartPopUpModel
|
|
|
|
@{
|
|
var startPopupFormName = "startPopupFormTanitottTanulok";
|
|
}
|
|
|
|
@using (Html.KretaForm(startPopupFormName))
|
|
{
|
|
@Html.KretaValidationSummary()
|
|
|
|
<div class="container-fluid details">
|
|
<div>
|
|
@Html.KretaComboBoxFor(m => m.FoglalkozasTipusPopUp, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperApi, action = "GetTanarTanitottTanulokFoglalkozasTipusList" })).RenderWithName(4, 8, true)
|
|
</div>
|
|
|
|
<div id="startPopupFoglalkozas">
|
|
@Html.KretaCascadeComboBoxFor(x => x.FoglalkozasPopUp, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new {controller = Constants.ApiControllers.ComboBoxHelperApi, action = "GetTanarTanitottTanulokFoglalkozasList" }), "FoglalkozasTipusPopUp").RenderWithName(4, 8, true)
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<div align="center">
|
|
@Html.KretaButton(name: "StartTanitottTanulok", text: CommonResource.Tovabb, enabled: true).Events(e => e.Click("TanarTanitottTanulokHelper.startTanitottTanulokTovabb"))
|
|
</div>
|
|
</div>
|
|
} |