@using Kreta.Web.Areas.DualisKepzes.Models
@using Kreta.Web.Helpers
@using Kreta.Web.Helpers.Grid
@using Kreta.Resources
@model DualisKepzohelyModel
@DualisResource.TabTantargyak
@(
Html.KretaGrid(
name: "DualisTantargyGrid",
getUrl: new GridApiUrl(Constants.ApiControllers.DualisKepzohelyApi, "GetDualisTantargyGrid", new Dictionary { { "Id", Model.ID.Value.ToString() } })
)
.Columns(columns =>
{
columns.Bound(c => c.Nev);
})
.AutoBind(true)
.Sortable(sortable => sortable
.AllowUnsort(true)
.SortMode(GridSortMode.MultipleColumn))
)