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,35 @@
@using Kreta.Resources
@using Kreta.Web.Areas.Feljegyzes.Controllers
@using Kreta.Web.Areas.Feljegyzes.Models
@using Kreta.Web.Security
@model FeljegyzesekModel
@{
string startPopupFormName = BaseElektronikusUzenetekController.StartPopupFormName;
}
@using (Html.KretaForm(startPopupFormName))
{
@Html.HiddenFor(x => x.ElsoTanitasiNap)
@Html.HiddenFor(x => x.DefaultEsemenyDatuma)
<div class="container-fluid details">
<div>
@Html.KretaComboBoxFor(x => x.OsztalyCsoportId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = "ComboBoxHelperApi", action = "GetOsztalyCsoportListByEvfolyam", isDualisKepzohelyiCsoport = Model.IsDualisKepzohelyiCsoport, tanarId = ClaimData.FelhasznaloId, szervezetAdatokHalmaza = (int)Kreta.Enums.ManualEnums.SzervezetAdatokHalmazaEnum.SzervezetEsAlSzervezetek }), "Text", "Value", useGroup: true, htmlAttributes: new Dictionary<string, object> { { "class", "enterKeyPress" } }).SelectedIndex(0).AutoBind(true).RenderWithName(4, 8, true)
</div>
<br />
<div align="center">
@Html.KretaButton("StartFeljegyzes", CommonResource.Tovabb, clickEventName: "ElektronikusUzenetekHelper.startTovabb")
</div>
@Html.KretaValidationSummary()
</div>
}
<script>
$(document).ready(function () {
$("span.enterKeyPress").onKeyPressEnter(ElektronikusUzenetekHelper.startTovabb);
});
</script>