26 lines
No EOL
845 B
Text
26 lines
No EOL
845 B
Text
@using Kreta.Framework;
|
|
@using Kreta.Web.Helpers.Grid;
|
|
@using Kreta.Web.Areas.Tantargy.Models
|
|
@using Kreta.Web.Classes
|
|
@using Kreta.Enums.ManualEnums
|
|
@model TantargyModel
|
|
|
|
<div>
|
|
@(
|
|
Html.KretaGrid<TantargyFoglalkozasaiGridModel>
|
|
(
|
|
name: "TantargyFoglalkozasaiGrid",
|
|
getUrl: new GridApiUrl("TantargyakApi", "GetTantargyFoglalkozasaiGrid", new Dictionary<string, string> { { "tantargyID", Model.ID.ToString() } })
|
|
)
|
|
.Columns(columns =>
|
|
{
|
|
columns.Bound(c => c.OsztalyCsoport);
|
|
columns.Bound(c => c.Tanar);
|
|
columns.Bound(c => c.Oraszam).Width("10%");
|
|
columns.Bound(c => c.Tipus_DNAME);
|
|
})
|
|
.Sortable(sortable => sortable
|
|
.AllowUnsort(true)
|
|
.SortMode(GridSortMode.MultipleColumn))
|
|
)
|
|
</div> |