34 lines
No EOL
1.4 KiB
Text
34 lines
No EOL
1.4 KiB
Text
@using Kreta.Resources
|
|
@using Kreta.Web.Areas.Feljegyzes.Controllers
|
|
@using Kreta.Web.Areas.Feljegyzes.Models
|
|
|
|
@model OsszefuggoSzakGyakModel
|
|
|
|
@{
|
|
var startPopupFormName = OsszefuggoSzakGyakController.StartPopupFormName;
|
|
}
|
|
|
|
@using (Html.KretaForm(startPopupFormName))
|
|
{
|
|
<div class="container-fluid details">
|
|
@Html.KretaValidationSummary()
|
|
<div>
|
|
@Html.KretaComboBoxFor(x => x.CsoportId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetOsszefuggoSzakGyakosCsoportok" }), "Text", "Value", useGroup: true, htmlAttributes: new Dictionary<string, object> { { "class", "enterKeyPress" } }).AutoBind(true).RenderWithName(4, 8, true)
|
|
</div>
|
|
<div>
|
|
@Html.KretaComboBoxFor(x => x.TantargyId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetTantargy" }), "Text", "Value", useGroup: true, htmlAttributes: new Dictionary<string, object> { { "class", "enterKeyPress" } }).AutoBind(true).RenderWithName(4, 8, true)
|
|
</div>
|
|
<br />
|
|
<div align="center">
|
|
@Html.KretaButton("Start", CommonResource.Tovabb, clickEventName: "OsszefuggoSzakGyakHelper.startTovabb")
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
$("span.enterKeyPress").onKeyPressEnter(OsszefuggoSzakGyakHelper.startTovabb);
|
|
});
|
|
|
|
</script> |