init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,33 @@
|
|||
@using Kreta.Web.Helpers.Grid;
|
||||
@using Kreta.Web.Areas.Tanulo.Models
|
||||
@using Kreta.Resources;
|
||||
|
||||
<div class="container-fluid details">
|
||||
<div class="col-xs-12 settings fa-border" style="background-color: whitesmoke" >
|
||||
<h3>@OrarendResource.CsokkentettJogosultsag</h3>
|
||||
<div class="col-xs-12">
|
||||
<h5>@OrarendResource.FigyelemCsokkentettMod</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container-fluid">
|
||||
@(
|
||||
Html.KretaGrid<TanulotTanitoTanarokGridModel>(
|
||||
name: "TanulotTanitoTanarokGrid",
|
||||
allowScrolling: true,
|
||||
getUrl: new GridApiUrl("TanulotTanitoTanarokApi", "GetTanulotTanitoTanarGrid", new Dictionary<string, string> { }),
|
||||
sort: sort => sort.Add(c => c.Tantargy).Ascending()
|
||||
)
|
||||
.Columns(columns =>
|
||||
{
|
||||
columns.Bound(c => c.Tantargy).Width("30%");
|
||||
columns.Bound(c => c.Tanar);
|
||||
})
|
||||
.Sortable(sortable => sortable
|
||||
.AllowUnsort(true)
|
||||
.SortMode(GridSortMode.MultipleColumn))
|
||||
.AutoBind(true)
|
||||
)
|
||||
</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue