0
剣道の作成と更新のためのポップアップがありますか?私は更新のためのポップアップを持っていますが、私は作成のために別のポップアップを使用したいと思います。ここに私の剣道のコードはありますか?作成と更新のポップアップが別々になります
@(Html.Kendo().Grid<xxxxxx.Il>().Name("Iller")
.Columns(columns =>
{
columns.Bound(p => p.Id);
columns.Bound(p => p.IlAdi);
columns.Bound(p => p.DegistirenKullanici);
columns.Bound(p => p.DegistirmeTarihi);
columns.Bound(p => p.KayitKullanici);
columns.Bound(p => p.KayitTarihi).Format("{0:dd-MM-yyyy}");
columns.Command(command => { command.Edit(); command.Destroy(); }).Width(250);
})
.Pageable(pageable => pageable.Refresh(true))
.Sortable()
.AutoBind(true)
.Selectable()
.Navigatable()
.Filterable()
.ToolBar(toolbar => toolbar.Create())
.Editable(ed => ed.Mode(GridEditMode.PopUp).TemplateName("IlModel").Window(w => w.Width(450)).Window(w => w.Title("Düzenle")))
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(5)
.Events(events => events.Error("error_handler"))
.Model(model => model.Id(p => p.Id))
.Create(update => update.Action("Il_Create", "Tanimlar"))
.Read(read => read.Action("Il_Read", "Tanimlar").Data("getAdditionalData"))
.Update(update => update.Action("Il_Update", "Tanimlar"))
.Destroy(update => update.Action("Il_Delete", "Tanimlar"))
)
)