16 lines
829 B
Text
16 lines
829 B
Text
@using Kreta.Web.Areas.Alkalmazott.Models
|
|
@using Kreta.Resources
|
|
@using Kreta.Web.Security
|
|
@model AlkalmazottModel
|
|
|
|
@Html.HiddenFor(x => x.MunkaugyAdatModel.IsDualisKepzohelyiOktato)
|
|
@Html.HiddenFor(x => x.MunkaugyAdatModel.IsDualisKepzohelyFromSzervezet)
|
|
@Html.HiddenFor(x => x.MunkaugyAdatModel.DualisKepzohelyNeve)
|
|
@Html.HiddenFor(x => x.MunkaugyAdatModel.DualisKepzohelyAdoszama)
|
|
|
|
<div class="container-fluid details">
|
|
<div class="row">
|
|
@Html.KretaComboBoxFor(x => x.MunkaugyAdatModel.OktatoSzervezetId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetDualisKepzohelyek" }), "Text", "Value", useGroup: true).AutoBind(true).RenderWithName(3, 3)
|
|
@Html.KretaCheckBoxFor(x => x.MunkaugyAdatModel.IsSzakiranyuOktatasertFelelos).RenderWithName(3, 3)
|
|
</div>
|
|
</div>
|