@using Kreta.Enums @using Kreta.BusinessLogic.Classes @using Kreta.Web.Helpers.Grid @using Kreta.Web.Areas.Hianyzas.Models @using Kreta.Resources @model HianyzasokSearchModel @{ var searchFormName = "searchForm"; } @section AddSearchPanel { @using (Html.SearchPanelSideBar(searchFormName, "HianyzasGrid")) { @Html.KretaRangeDatePickerSideBar(model => model.IdoszakKezdete, model => model.IdoszakVege) @Html.KretaNumericFor(x => x.Oraszam).Min(0).Max(24).Step(1).RenderSearchPanelSideBar() @Html.KretaComboBoxFor(x => x.TantargyId, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperApi, action = "GetTantargyList" })).RenderSearchPanelSideBar() @Html.KretaTextBoxFor(x => x.Tema).RenderSearchPanelSideBar() @Html.KretaComboBoxFor(x => x.MulasztasTipus, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperApi, action = "GetMulasztasTipusList" })).RenderSearchPanelSideBar() @Html.KretaComboBoxFor(x => x.Igazolt, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperEnumApi, action = "GetIgenNemEnumList" })).RenderSearchPanelSideBar() @Html.KretaComboBoxFor(x => x.TanoraiCeluMulasztas, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperEnumApi, action = "GetIgenNemEnumList" })).RenderSearchPanelSideBar() @Html.KretaComboBoxFor(x => x.IgazolasTipus, Url.HttpRouteUrl(Constants.RouteKey.ActionApi, new { controller = Constants.ApiControllers.ComboBoxHelperApi, action = "GetIgazolasTipusList" })).RenderSearchPanelSideBar() @Html.KretaRangeDatePickerSideBar(model => model.RogzitesKezdete, model => model.RogzitesVege) @Html.HiddenFor(x => x.MulaszatasId); } }