The different remove and add sequencing, and the incomplete event firing for state change initiators, makes it difficult to write code for custom processing of items in connected listboxes.
Event order inconsistencies when list boxes are connected.
Drag and drop actions fire events source listbox remove followed by target listbox add
Toolbar command actions for moving fire events target listbox add followed by source listbox remove
Suggestion: have command actions sequence in the same way as drag and drop.
Drag and drop actions have an event dragend but there is no event for commandend
There are no toolbar events.
Suggestion: add toolbar or command events,
I have a grid with re sizable columns.
column resizing is working properly in Chrome but not in explorer.
Below Js fiddle works fine in chrome but not in explorer(column resizing).
http://jsfiddle.net/xwsa7oom/
Please help.
Hi,
I'm using a template for the header of my column. But now when I want to try to add grouping and drag my column to the group box I do not use the headertemplate but just shows the fieldname.
How can I make that the template is also used when they drag/group?
Hi,
I'm using virtual scrolling and pageSize 50 on my grid to increase performance. But now I also want to enable grouping but then it only groups the items in the page not all items.
How can I make that all items are grouped?
These are the settings I'm using:
$("#grid").kendoGrid({
autoBind: false,
selectable: "multiple",
dataSource: {
schema: {
model: {
fields: {
}
}
}
,
pageSize: 50
},
height: 'auto',
filterable: true,
groupable: true,
scrollable: {
virtual: true
},
pageable: {
numeric: false,
previousNext: false
},
sortable: true,
columns:
});
hello,
I'm aware that the filters do not carry over using localStorage as the persistence method:
http://demos.telerik.com/kendo-ui/grid/persist-state
I'm currently doing this method of filter customization:
http://demos.telerik.com/kendo-ui/grid/filter-menu-customization
so when using the above system of persistence, the grid returns correctly, and the correct value is applied to the filter, but it is no longer a KendoDropDown menu, just a textbox.
I know using a HeaderTemplate you can restore basic Column header customization's, but I have not found anything that goes as deep as the whole filter menu. Only something as small as a button or checkbox such as this:
http://www.telerik.com/forums/persist-state-issues
So, is this possible to merge the first two demos into one? Maintaining the custom filter through grid persistence?
Thanks for any time spent,
-Corey
Hi,
I just upgraded from telerik.kendoui.professional.2017.2.621.commercial to kendoui.for.jquery.2017.3.913.commercial. When i hover over a menu item i receive the following error from the console:
SCRIPT5007: Unable to get property 'rootMenuItems' of undefined or null reference
Kind regards,
Marco
There is a problem with the horizontal scrolling of a hierarchical grid. I'm actually using kendo for ASP MVC but the problem is with the underlying UI product rather than the MVC wrappers.
Scenario
A hierarchical grid in which the child grid is wider than the parent grid. Page (or container) of the widget made narrow enough to produce the horizontal scrollbar.
Problem
When scrolling to the right, the parent grid headers stop scrolling when they are all visible. Scrolling past this point leaves the parent columns misaligned with their headers. (There is also a vertical line representing the right hand edge of the parent grid which shows through on the child grid.)
I have edited one of the Telerik demos to illustrate, see here.
I'm currently try to figure out a workaround for this but would welcome any help.
Hello,
I have that has a function save. and 2 external templates files
PricingViewModel = kendo.observable({
savePrice:
function
(e) {
debugger;
},
Item: {
Items: ModelData,
SavePricing:
function
(e){
}
});
The PricingViewModel is bind to template . there is another template in which the data source is not part of this . have ajax function that calls data and binds to template has a button which want bind to () or how can do that?
also tried kendo.bind() that worked. It gets bind to normal javascript function outside but in that get e.data !!