19 lines
629 B
Text
19 lines
629 B
Text
@using Kreta.Web.Helpers
|
|
@using Kreta.Resources
|
|
@using Kreta.Web.Areas.Adatszolgaltatasok.Models
|
|
|
|
<script type="text/javascript">
|
|
kendo.ui.Upload.fn._supportsDrop = function () { return false; }
|
|
</script>
|
|
<style type="text/css">
|
|
.k-panel>.k-item>.k-link, .k-panelbar>.k-item>.k-link{
|
|
position: inherit;
|
|
display: flex;
|
|
}
|
|
</style>
|
|
@foreach (var item in ViewData.Model.Data)
|
|
{
|
|
SZIRStatDokumentumModel model = new SZIRStatDokumentumModel { SzirStatTipusId = item.TipusId, FeladatellatasiHelyId = item.FeladatellatasiHelyId };
|
|
@Html.Action("LoadSZIRStatDokumentumPartial", "SZIRStat", model)
|
|
}
|
|
|