Hi,
I've Kendo Grid UI for MVC in my current MVC.NET project and there is a dropdownlist at the bottom of the grid, which, I believe is supposed to display page numbers, but currently this dropdownlist is getting only value "1" regardless of how many page I have.
I have attached a screen shot of the page for further clarification,
I want to fix this by binding the correct number of pages I am displaying and refresh the grid upon dropdownlist selection is changed.
Looking for assistance asap
Thank you
Below the snippet i was trying.
columns.Bound(c => c.OrderNumber).Title("OrderNumber").
.EditorTemplateName("_EditTextBox").EditorViewData(new { maxLength = 3})
Any help or pointers ?
it's not work,how to use EditorTemplateName?
columns.Bound(u => u.RoleNameString).EditorTemplateName("roles_editor"
);
<script type="text/javascript">
function roles_editor()
{
}
</script>

I have a column in grid (ASP.Net Core MVC) that is multi-select.
Right now I've turned filtering and sorting off for this column...
How to implement filtering for a column that is multi-select...


I am trying to sort my grid. Nothing happens and I'm getting the following console error:
kendo.all.js:164 Uncaught TypeError: r[n].call is not a function at init.trigger (VM376 kendo.all.min.js:25) at init.d (VM376 kendo.all.min.js:61) at init.trigger (VM376 kendo.all.min.js:25) at init._click (VM376 kendo.all.min.js:54) at HTMLTableCellElement.d (jquery-1.12.3.min.js:2) at HTMLTableCellElement.dispatch (jquery-1.12.3.min.js:3) at HTMLTableCellElement.r.handle (jquery-1.12.3.min.js:3)I created this Dojo to duplicate the problem: https://dojo.telerik.com/@dojolee/AFEqOfiZ

Hey there,
I have one requirement. I need to put filtering in grouped data on group data header section same like filter like in grid columns. Is it possible with C# MVC grid

Hi,
I've recently found an issue with the combobox where a user can type in any number on the combobox and it will save if the foreign key exists on the database - regardless of checking whether or not the value is valid for use or not.
Why does the combobox treat typing in a random number as the FK of the control anyway when it doesn't do the same thing if you type in a random character?
Anyway the above is a question for a different time but after finding this out, I've found there's an article on how to avoid these kind of situations using JavaScript on this page:
https://docs.telerik.com/kendo-ui/knowledge-base/prevent-submission-of-missing-value
While trying to implement this logic, I can see that it's working (by not allowing the random number selection to be saved), but I've noticed there's actually an error on the first round of "select" call as the loading icon is displayed on the combo box.
The specific line is the "this.select(0)" line from the code snippet below:
if (this.value() && this.selectedIndex == -1) { this.dataSource.filter({ value: this.value(), field: this.options.dataTextField, operator: "contains" }); this.select(0); <=== this line is causing the issue. if ( this.selectedIndex == -1 ) { this.text(""); }}
Upon closer inspection, I see that there's a 500 error being thrown due to the "Page" parameter being set to NaN and the "PageSize" parameter being set to 0.
https://.../Items?sort=&group=&filter=NameDisplay~contains~%2712%27&page=NaN&pageSize=0
Any subsequent searches works without any issues and sets the "Page" and "PageSize" to the correct values.
https://.../Items?sort=&page=1&pageSize=80&group=&filter=NameDisplay~contains~%2712%27
This is very strange as the 500 error (above) only displays the first time this.select(0) is called, but any subsequent times will work without any issues.
While trying to reproduce this, I've found that it only occurs when the combobox has a valuemapper set to it.
.Virtual(v => v.ItemHeight(26).ValueMapper("itemsValueMapper"))
When the valuemapper function is removed from the combobox, the this.select(0) functions runs without any issues.
The value mapper is required for my comboboxes as it provides a good way to virtualise my lists.
My datasource is using webapi as below:
.DataSource(source =>{ source.Custom() .ServerFiltering(true) .ServerPaging(true) .PageSize(80) .Type("webapi") .Transport(transport => { transport.Read(a => a.Url(itemsUrl)); }) .Schema(schema => { schema.Data("Data") .Total("Total"); });})
Is there any work around that can be done for this?
Or even better, is there a way to prevent the combobox from binding random number values typed into the control?