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

20 lines
918 B
Plaintext

@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>
}