init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -0,0 +1,41 @@
|
|||
@using Kreta.Web.Helpers
|
||||
@using Kreta.Web.Areas.Beiratkozas.Models
|
||||
@using Kreta.Web.Helpers.Grid
|
||||
@using Kreta.Web.Areas.Beiratkozas.Controllers;
|
||||
@using Kreta.Resources
|
||||
@model NebuloKirSzinkronModel
|
||||
|
||||
<div class="col-sm-12">
|
||||
<div class="row">
|
||||
<div style="padding-left:20px; text-align:center">
|
||||
<h3>@(BeiratkozasResource.NebuloTelephelyValaszto)</h3>
|
||||
<b>@(Html.Raw(BeiratkozasResource.KirTelephelyValasztoSzoveg))</b>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
<div class="row telephelyDiv">
|
||||
@Html.KretaComboBoxFor(x => x.TelephelyId, Model.TelephelyList).RenderWithName()
|
||||
</div>
|
||||
<div class="row">
|
||||
@(
|
||||
Html.KretaGrid<NebuloKirSzinkronGridModel>
|
||||
(
|
||||
name: NebuloController.NebuloTelephelyGrid,
|
||||
getUrl: new GridApiUrl("NebuloApi", "GetNemSzinkronizaltNebulok"),
|
||||
allowFilterable: false,
|
||||
allowPaging: false,
|
||||
allowScrolling: true
|
||||
)
|
||||
.SelectBoxColumn(Html, string.Empty)
|
||||
.Columns(columns =>
|
||||
{
|
||||
columns.Bound(c => c.Nev);
|
||||
columns.Bound(c => c.OktatasiAzonosito);
|
||||
})
|
||||
.Sortable(sortable => sortable
|
||||
.AllowUnsort(true)
|
||||
.SortMode(GridSortMode.MultipleColumn))
|
||||
)
|
||||
</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue