This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,16 @@
@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>