init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,29 @@
|
|||
@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>
|
Loading…
Add table
Add a link
Reference in a new issue