24 lines
794 B
Plaintext
24 lines
794 B
Plaintext
@using Kreta.Web.Helpers.Grid
|
|
@using Kreta.Web.Areas.Intezmeny.Models
|
|
@model FeladatellatasiHelyModel
|
|
|
|
<div>
|
|
@(
|
|
Html.KretaGrid<FeladatellatasiHelyOsztalycsoportokGridModel>
|
|
(
|
|
name: "FeladatellHelyOsztalyCsopGrid",
|
|
getUrl: new GridApiUrl("IntezmenyApi", "GetFeladatellatasiHelyOsztalycsoportjai", new Dictionary<string, string> { { "Id", Model.ID.ToString() } })
|
|
)
|
|
.Columns(columns =>
|
|
{
|
|
columns.Bound(c => c.Nev);
|
|
columns.Bound(c => c.Tipus);
|
|
columns.Bound(c => c.Evfolyam_DNAME).Width("10%");
|
|
columns.Bound(c => c.Letszam).Width("10%");
|
|
})
|
|
.Sortable(sortable => sortable
|
|
.AllowUnsort(true)
|
|
.SortMode(GridSortMode.MultipleColumn))
|
|
)
|
|
</div>
|