29 lines
No EOL
793 B
Text
29 lines
No EOL
793 B
Text
@using Kreta.Web.Areas.DualisKepzes.Models
|
|
@using Kreta.Web.Helpers
|
|
@using Kreta.Web.Helpers.Grid
|
|
@using Kreta.Resources
|
|
|
|
@model DualisKepzohelyModel
|
|
|
|
|
|
<div class="container-fluid">
|
|
<h4>@DualisResource.TabTanulok</h4>
|
|
@(
|
|
Html.KretaGrid<DualisTanuloGridModel>(
|
|
name: "DualisTanuloGrid",
|
|
getUrl: new GridApiUrl(Constants.ApiControllers.DualisKepzohelyApi, "GetDualisTanuloGrid", new Dictionary<string, string> { { "Id", Model.ID.Value.ToString() } })
|
|
)
|
|
.Columns(columns =>
|
|
{
|
|
columns.Bound(c => c.Nev);
|
|
columns.Bound(c => c.OktatasiAzonosito);
|
|
columns.Bound(c => c.Adoazonosito);
|
|
columns.Bound(c => c.TajSzam);
|
|
})
|
|
.AutoBind(true)
|
|
.Sortable(sortable => sortable
|
|
.AllowUnsort(true)
|
|
.SortMode(GridSortMode.MultipleColumn))
|
|
)
|
|
<br />
|
|
</div> |