This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions
@@ -0,0 +1,19 @@
@using Kreta.Web.Areas.Alkalmazott.Models
@model VegzettsegModel
@using (Html.KretaForm("VegzettsegForm"))
{
@Html.KretaValidationSummary()
@Html.HiddenFor(model => model.VegzettsegModelId)
@Html.HiddenFor(model => model.AlkalmazottId)
<div class="container-fluid details">
<div class="row">
@Html.KretaComboBoxFor(x => x.Vegzettseg, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetVegzetsegTipusList" }), "Text", "Value").AutoBind(true).RenderWithName(4, 8)
@Html.KretaMultiSelectFor(x => x.Kepesites, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetSzakTipusList" }), "Text", "Value").AutoBind(true).RenderWithName(4, 8)
</div>
<div class="row">
@Html.KretaTextBoxFor(x => x.Egyeb).RenderWithName(4, 8)
</div>
</div>
}