@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)) {
@Html.KretaValidationSummary()
@Html.KretaComboBoxFor(x => x.CsoportId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetOsszefuggoSzakGyakosCsoportok" }), "Text", "Value", useGroup: true, htmlAttributes: new Dictionary { { "class", "enterKeyPress" } }).AutoBind(true).RenderWithName(4, 8, true)
@Html.KretaComboBoxFor(x => x.TantargyId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetTantargy" }), "Text", "Value", useGroup: true, htmlAttributes: new Dictionary { { "class", "enterKeyPress" } }).AutoBind(true).RenderWithName(4, 8, true)

@Html.KretaButton("Start", CommonResource.Tovabb, clickEventName: "OsszefuggoSzakGyakHelper.startTovabb")
}