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,33 @@
@using Kreta.Resources;
@using Kreta.Web.Areas.Intezmeny.Models
@model CsengetesiRendTorlesModel
<div class="container-fluid details">
@using (Html.KretaForm("TorlendoCsengRendForm"))
{
@Html.KretaValidationSummary()
@Html.HiddenFor(x => x.ID)
<div class="CSREND">
<p>@CsengetesiRendResource.AktivCsengetesiRend
</div>
<div class="row">
@Html.KretaComboBoxFor(x => x.CsengetesiRendID, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetCsengetesiRendListForComboBox"} ), "Text", "Value", serverFilteringFrom: "ID").AutoBind(true).RenderWithName(3, 8)
</div>
}
</div>
<style type="text/css">
div.CSREND {
height: 5em;
position: relative;
}
div.CSREND p {
text-align: center;
margin: 5px auto;
line-height: 145%;
font-size: 10pt;
}
</style>