This commit is contained in:
2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
@using Kreta.Web.Helpers.Grid
@using Kreta.Web.Areas.Hianyzas.Models
<div>
@(
Html.KretaGrid<TantargyiMulasztasGridModel>
(
"TantargyiMulasztasGrid",
new GridApiUrl("TantargyiMulasztasApi", "GetTantargyiMulasztasGrid"),
allowScrolling: true
)
.Columns(columns =>
{
columns.Bound(m => m.Tantargy);
columns.Bound(m => m.Mulasztas);
columns.Bound(m => m.Osszes).Width("10%");
columns.Bound(m => m.Szazalek).Width("10%");
})
.Sortable(sortable => sortable
.AllowUnsort(true)
.SortMode(GridSortMode.MultipleColumn))
)
</div>