在编辑Kendo UI Grid时,单元格中的标签顺序无法使用。

问题描述 投票:3回答:1

我使用的是Kendo UI Grid,我想在上面进行InCell编辑,InCell编辑工作很好,一旦我点击 "添加新记录 "按钮,就会显示第一列 "名称 "的文本框。

我的问题是,当我在 "Name "字段上放值后按Tab键时,它没有转移到第二个字段 "Description "中。

下面是剑道网格的一段代码:-。

@using Gts.GlaspacLX.Web.App_Start;
@using Gts.GlaspacLX.ListValues;
@using System.Collections;
@using Kendo.Mvc.UI

@*<script src="@Url.Content("~/Scripts/jquery-ui-1.8.18.min.js")"></script>*@
<script type="text/javascript" src="../../Scripts/js/Product/Category.js"></script>
<style>
.k-dirty { display:none; }
</style>


<fieldset>
    <form>           
        <div id="divProduct" style="display: none;">


@(Html.Kendo().Grid<Gts.GlaspacLX.Web.ViewModel.ProductViewModel>()
    .Name("ProductGrid")
    .Columns(columns => {
        columns.Bound(p => p.Name).Width(50);
        columns.Bound(p => p.Description).Width(200);                                                       
        columns.Command(command => { command.Destroy(); }).Width(75);
        columns.Bound(p => p.ID).Hidden();
    })
    .ToolBar(commands => {
        commands.Create();
        commands.Save();
    })
    .Editable(editable => editable.Mode(GridEditMode.InCell))
    .DataSource(dataSource => dataSource
        .Ajax()
        .Batch(true)
        .ServerOperation(false)
        .Model(model => {
            model.Id(p => p.ID);
        })                                           
        .Read(read => read.Action("ProductEditingInline_Read", "Product"))
        .Create(create => create.Action("ProductEditingInline_Create", "Product"))
        .Update(update => update.Action("ProductEditingInline_Update", "Product"))
        .Destroy(destroy => destroy.Action("ProductEditingInline_Destroy", "Product")
        )
       .Events(events => events.Change("onProductChange"))
       // .Events(events => events.Error("error_handler"))
    )
)


            <input type="button" value="Cancel" onclick=" $('.k-button.k-button-icontext.k-grid-cancel-changes').click(); $('#productWindow').data('kendoWindow').close(); " />
            <input type="button" value="Save" onclick=" SaveProductChanges(); " />
        </div>
    </form>
</fieldset>
}

谁能帮我解决这个问题?

asp.net-mvc-4 kendo-grid tab-ordering
1个回答
3
投票

你会想使用 可导航选项 的网格。 以下是我建立的一个jsfiddle例子。 键盘导航的剑道网格示例. 在MVC中,通过调用网格上的.Navigatable()来开启可导航选项(见下面的例子)。

@(Html.Kendo().Grid<TestModel>()
.Name("TestGrid")
.Columns(columns =>
{
    columns.Bind(c => c.DisabledString);
    columns.Bind(c => c.Description);
    columns.Bind(c => c.TestInvisibleDate);
    columns.Bind(c => c.TestDate);
    columns.Bind(c => c.AllExpressions);
})
.HtmlAttributes(new { style = "height:550px;" })
.Editable(editable => editable.Mode(GridEditMode.InCell))
.Sortable()
.Scrollable(s => { s.Enabled(true); s.Virtual(true); })
.Pageable(p => p.Enabled(false))
.Mobile(MobileMode.Disabled)
.Navigatable()
.Resizable(s => s.Columns(true))
.Reorderable(c => c.Columns(true))
.DataSource(dataSource => dataSource
    .Ajax()
    .Batch(true)
    .PageSize(50)
    .ServerOperation(false)
    .Model(model =>
    {
        model.Id(e => e.UniqueId);
    })
    )
)

这有帮助吗?

© www.soinside.com 2019 - 2024. All rights reserved.