Files
kreta/KretaWeb/Areas/Alkalmazott/Views/Alkalmazott/Wiz_TanarVegzettseg.cshtml
T
2024-03-13 00:33:46 +01:00

22 lines
1.1 KiB
Plaintext

@model Kreta.Web.Areas.Alkalmazott.Models.TanarVegzettsegWizardModel
@{
Layout = null;
}
<div style="padding-top: 15px;">
@using (Html.KretaForm("VegzettsegWizardForm"))
{
@Html.KretaValidationSummary()
@Html.HiddenFor(model => model.AlkalmazottId)
@Html.HiddenFor(model => model.EntityId)
<div class="container-fluid details">
<div class="row">
@Html.KretaComboBoxFor(x => x.TanariVegzettsegTipusId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetKKTanarVegzetsegTipusList" }), "Text", "Value").AutoBind(true).RenderWithName(4, 8)
@Html.KretaMultiSelectFor(x => x.TantargyKategoriaIds, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetKKSzakTipusList" }), "Text", "Value").AutoBind(true).RenderWithName(4, 8)
</div>
<div class="row">
@Html.KretaTextBoxFor(x => x.Egyeb).RenderWithName(4, 8)
</div>
</div>
}
</div>