Kendo.Filterable не содержит определения для «операторов» - PullRequest
0 голосов
/ 30 мая 2019

Фильтруется Kendo Grid Имеет ошибку Kendo Grid filterable does not contain a definition for 'Messages' Для операндов.

Tnx

@(Html.Kendo().Grid<IoInfo>().Name("IOInfo").Columns(columns =>
    {
        columns.Bound(p => p.BeginDate).Format("{0:MM ,dd, yyyy}").Width(15).Title(Html.LabelFor(m => ioInfo.BeginDate).ToString());
        columns.Bound(p => p.BeginTime).Width(15).Title(Html.LabelFor(m => ioInfo.BeginTime).ToString());
        columns.Bound(p => p.EndDate).Format("{0:MM ,dd, yyyy}").Width(15).Title(Html.LabelFor(m => ioInfo.EndDate).ToString());
        columns.Bound(p => p.EndTime).Width(15).Title(Html.LabelFor(m => ioInfo.EndTime).ToString());
    })
      .Sortable(x => x.Enabled(true)).Selectable(x => x.Enabled(true))  .Filterable(filterable => filterable
          .Extra(false)[enter image description here][1]
          .Operators()

      .DataSource(dataSource => dataSource

          .Ajax()
          .ServerOperation(false)
          .Read(read => read.Action("BindGrid", "Person"))
      )

)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...