0

ASP.NET MVC コードから剣道 UI グリッドの新しいメッセージを設定する方法はありますか? メッセージメソッドに渡す必要がある Kendo.Mvc.UI.Fluent.FilterableMessagesBuilder オブジェクトに行き詰まっています。では、値を変更するには Messages メソッドに何を渡す必要がありますか?

@(

Html.Kendo().Grid(Model)
    .Name("Grid")
    .Columns(col =>
    {
        col.Bound(p => p.Id);
        col.Bound(p => p.FirstName);
        col.Bound(p => p.LastName);
        col.Bound(p => p.Address);
        col.Bound(p => p.Zip);
    })

    .Pageable()
    .Sortable()
    .Scrollable()
    .Filterable(filter => filter.Messages(Kendo.Mvc.UI.Fluent.FilterableMessagesBuilder
    .DataSource(dataSource => dataSource
        .Ajax()
        .ServerOperation(false)
    )
)
4

1 に答える 1

1
     .Filterable(filterable => filterable.Messages(messages =>
         {
             messages.Info("Custom header text"); // sets the text on top of the filter menu
             messages.Filter("CustomFilter"); // sets the text for the "Filter" button
             messages.Clear("CustomClear"); // sets the text for the "Clear" button
         }))

Kendo Documentation を参照してください (フィルター メニューのローカリゼーションを検索してください)。

フィルター メニューのローカライズ

于 2013-04-24T20:24:35.150 に答える