42 lines
1.4 KiB
Text
42 lines
1.4 KiB
Text
@using Kreta.Web.Areas.Alkalmazott.Models
|
|
@using Kreta.Web.Helpers
|
|
@using Kreta.Resources
|
|
@using Kreta.Web.Security
|
|
|
|
@model AlkalmazottModModel
|
|
|
|
@using (Html.KretaForm("AlkalmazottModForm"))
|
|
{
|
|
@Html.KretaValidationSummary()
|
|
|
|
@Html.HiddenFor(x => x.AlkalmazottId)
|
|
@Html.HiddenFor(x => x.AlkalmazottArray)
|
|
@Html.HiddenFor(x => x.IsFromSzervezet)
|
|
<div class="container-fluid details">
|
|
<div>
|
|
@if (!string.IsNullOrWhiteSpace(Model.AlkalmazottArray))
|
|
{
|
|
<div class="row">
|
|
@Html.KretaLabelFor(x => x.AlkalmazottNevArray, 3, 9)
|
|
</div>
|
|
}
|
|
else
|
|
{
|
|
<div class="row">
|
|
@Html.KretaLabelFor(x => x.AlkalmazottNev, 3, 9)
|
|
</div>
|
|
}
|
|
<div class="row">
|
|
<div class="col-xs-6 col-sm-6 col-md-3">
|
|
@Html.LabelFor(x => x.ModifyNem, null, htmlAttributes: new Dictionary<string, object>() { { "class", "windowInputLabel" } })
|
|
</div>
|
|
<div class="col-xs-12 col-sm-12 col-md-8">
|
|
@Html.KretaSelectorFor(x => x.ModifyNem, Model.NemList)
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
@Html.KretaComboBoxFor(x => x.OktatoSzervezetId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetDualisKepzohelyek" }), "Text", "Value", useGroup: true, isSingleElementSet: false).AutoBind(true).RenderWithName(3, 3)
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|