init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
|||
@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>
|
Loading…
Add table
Add a link
Reference in a new issue