列中的KendoUI Grid按钮

时间:2014-08-05 06:47:55

标签: kendo-grid

我的MVC中有一个KendoUI Grid。

enter image description here

以下是代码。

@(Html.Kendo().Grid<TekstenViewModel.Tekst>()
      .Name("Grid")
      .Columns(columns =>
      {
          columns.Bound(product => product.Naam).Width(100);
          columns.Bound(product => product.Waarde).Width(100);
          columns.Bound(product => product.Opmerking).Width(250);
          columns.Template(@<text></text>).ClientTemplate("<a class=\"delete iconBtn\" onclick=\"onClickDeleteResourceItem(#: ID #, '#: Naam #')\"></a>").Title("").Width(50);

      })
          .ToolBar(toolbar =>
          {
              toolbar.Create();
              toolbar.Save();
          })
    .Pageable()
    .Sortable()
    .Filterable()
    .Groupable()
    .Navigatable()
    .Editable(editable => editable.Mode(GridEditMode.InCell))
    .DataSource(dataSource => dataSource
        .Ajax()
        .Batch(true)
        .Model(model =>
            {
                model.Id(product => product.ID);
                model.Field(product => product.RESOURCE_SET_ID).DefaultValue(Model.SetID);
                model.Field(product => product.Type).DefaultValue(Domain.Agromilieu2.Common.Objects.Entities.Resources.ResourceType.GLOBAL_RESOURCES);
                model.Field(product => product.Taal).DefaultValue(Domain.Agromilieu2.Common.Agromilieu2Constants.Resources.DEFAULT_TAAL_CODE);
            })
            .Create(create => create.Action(MVC.BeheerTeksten.ActionNames.ResourceItems_CreateUpdate, MVC.BeheerTeksten.Name))
            .Read(read => read.Action(MVC.BeheerTeksten.ActionNames.ResourceItems_Read, MVC.BeheerTeksten.Name, new { setID = Model.SetID }))
            .Update(update => update.Action(MVC.BeheerTeksten.ActionNames.ResourceItems_CreateUpdate, MVC.BeheerTeksten.Name))
            .Destroy(destroy => destroy.Action(MVC.BeheerTeksten.ActionNames.ResourceItems_Delete, MVC.BeheerTeksten.Name))
    )
    )

现在我需要将其更改为此内容。

enter image description here

到目前为止没有成功。每当我尝试将文本和按钮放在列中时,文本就会消失。任何想法??

0 个答案:

没有答案