20 lines
918 B
Plaintext
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>
|
|
}
|