Hi,
In my kendo ui grid, my data volume is between 1000 to 9000, and I used pagination to speed up performace. Without pagination, it's extremely slow, impossible ot use. However, when I group by some column, only the groups in the first page will be displayed. If the first group spans over multiple pages, then when I collapse the group, I can only see one group in the first page, instead of all the groupings I have. I saw that this issue was raised in 2014, 2015. I am wondering if this issue has been addressed? What's the workaround for it?
Thanks,
Ning


Hello,
When a set a column to locked in my Kendo Grid , all grid come small like attchment.
i used this exemple code :
$("#grid").kendoGrid({
height: 540,
sortable: true,
reorderable: true,
resizable: true,
filterable: true,
columnMenu: true,
pageable: true,
columns: [
{ locked: true, field: "id", width: 200 },
{ field: "name", width: 800 }
],
dataSource: [{ id: 1, name: "Jane Doe" }, { id: 2, name: "John Doe" }]
});
Thanks for help.
hello every body.
i have a multiselect widget which i want to have fixed height and if items are more than the width , it should scroll vertically instead of increasing height size.
i used this css class and everything is fine in chrome. it has a vertical scroll bar.
.k-multiselect-wrap{height:30px;overflow:auto}
but when i open my project in firefox the scrollbar is not there , and i just can scroll vertically with mouse wheel.
could you please help me to fix this issue ?
Hello.
I have a task, with a long name(screenshot-1.png), and i show it with tooltip, like in screenshot-2.png. But in pdf i can't see its full name(screenshot-3.png). Can I do the same in pdf?

Need to prevent closing dropdown popup, when user scrolls the page.
Movie to explain the issue. https://drive.google.com/a/productiveedge.com/file/d/0Bzruk8_x7z70TnFaNVdxYXpiSzg/edit
In fact, dropdown should be closed only by user click on opened autocomplete again.
Result should be like the dropdowns on this page. http://www.w3schools.com/bootstrap/bootstrap_dropdowns.asp
Thanks in advance.

Hi,
I am facing an odd behavior with the kendo grid menu datetimepicker filter.
Replication (link https://dojo.telerik.com/aFOMARUq):
1- Filter the grid using the "Start" column (select any date or time).
2- Save grid state.
3- Load the grid state.
Check the "Start" column filter.
Observed behavior: the time picker is no longer displayed.
Is there something I am missing? any help or suggestions are much appreciated.
Hi all,
I tried using various code snippets for implementing this particular functionality of creating a new row when you press enter key WHILE YOU ARE EDITING in a particular cell.
$(document).on('keypress','body',function(event){
var keycode = (event.keyCode ? event.keyCode : event.which);
if(keycode == '13'){
grid.addRow();
}
});​
The above code worked when you simply press enter key, but when you're editing a cell and pressing enter key, it did not create a new row.
I want to create a new row when you press enter key while editing a particular cell.
It would be really great if someone can help me regarding this.
Thanks in advance.

I have many grids with a multiple columns that are filtered by a multiple checkboxes - just like excel data filtering (using Asp.Net MVC):
columns.Bound(m => m.Status).Groupable(true).Filterable(ftb => ftb.Multi(true)); But items in the checkbox list appear in the random order. On a multiple occasions different clients in different projects asked if these can be sorted alphabetically.
I know I can provide my own list with `.DataSource()` and point to an endpoint that provides the data and that worked for me before on a small scale.
But now I have about 40 grids with average of 3 columns filtered in this fashion and creating 120 endpoints is just not going to fly.
Is there any better way to force sort order on checkbox items?