Basically, setting
<p>Filterable(ftb => ftb.Mode(GridFilterMode.Row)</p><p></p>at the grid makes
<p>columns.Bound(x => x.ID).Filterable(x => x.UI("numericFilter"));</p><p></p>not work.
<p>Filterable(ftb => ftb.Mode(GridFilterMode.Menu)</p><p></p>does work but is not the intended functionality.

Hello
We're experiencing slow performance in IE 11 with a Kendo Grid when it contains a couple hundred rows. We use a custom rowTemplate which is fairly complex, with icons and angular markup.
What I see when debugging is that on every change to one item of the grid (change is triggered externally, not via direct edit on the grid, and sent to the DataSource with pushUpdate()), the whole grid is being re-rendered, which is fairly expensive as it has to render the complex template for all hundreds of rows.
Is it possible to have the grid only re-render the affected row ? It should significantly increase performance in our case.
Thanks

I have an Angular App that muss send an authorization header within every request that makes to the server.
When defining the kendo datasource, I've added the header field:
this._tableData = new kendo.data.DataSource({
transport: {
read: {
cache: true,
url: `${this.baseUrl}/uiobjects/_search`,
dataType: "json",
contentType: "application/json; charset=utf-8",
type: "POST",
headers: {'Authorization': this.header}
},
Allowing me to fill the kendo grid with data, but for one of the rows I've defined a template:
template: `<div class='title'><div class='pic'><img src="#:_links.previewdata.href#" alt="thumbnail"></div><span>#: title #</span></div>`
and there makes another request to the server in order to grab the image.
My problem here, is that I am not being able to set this authorization header for these request. Angular interceptors doesn't work because they are not made through $http.
Is there any clean way to intercep these request, or to add a Header??
Hello,
I'm trying to create a kendo grid with pagination, sorting and filtering in server side.
The grid configuration in client side is:
$scope.options = { sortable: true, filterable: true, pageable: true, dataSource: { transport: { read: { url: "api/items", contentType: "application/json", dataType: "json", type: "POST" }, parameterMap: function (options) { return kendo.stringify(options); } }, schema: { total: "totalItems", data: "items" }, serverPaging: true, pageSize: 4, serverSorting: true } };In server side, I've tried to do the pagination but it doesn't work. I have used Kendo.DynamicLinq. The DataSourceRequest containg (take, skip, sort) is corrected loaded from the request but when the query is executed it returns an error because of AutoMapper conversion from Dto to Model.
What is the correct way of implementing server side pagination, sorting and filtering for Kendo UI Grid, Web API and Automapper(conversion from dto to model)?
Hi,
do you have any solution with Kendo UI to produce a simple Dual List Box like e.g. http://www.virtuosoft.eu/code/bootstrap-duallistbox/ ?
MultiSelect is fine, but if you have longer lists it is not viable. A dual list box does the same Thing as MultiSelect, but is much more intuitive and clear. Any hints are welcome. Thanks!
Best regards
Martin
I got some extra div showing in the scheduler view. Anyone knows why?
the three little very thin bars are not any of my events.