33 lines
944 B
Text
33 lines
944 B
Text
@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>
|