Hi,
There is a bug present in the latest release 2019.2.619 where after you resize a column in the grid and then scroll the grid to the right you can no longer resize a column. The column resize cursor will not appear.
You can see the same problem in the kendoui demo
https://demos.telerik.com/kendo-ui/grid/column-resizing
1. Resize a column
2. Scroll the grid to the right
3. Now attempt to resize another column
Please can you advise how to work around or when a fix might be made available as this is a blocker for us at the moment.
Thanks
Doug
Hello Telerik Team,
I have a MVC kendo Grid bound to an Ajax DataSource. The grid uses InCell Edit mode.
I wish to be able to change the content of the grid via js and have achieved this by using set:
var firstItem = $('#inventoryTransReview_grid').data().kendoGrid.dataSource.data()[0];firstItem.set('Remark','test')
While this will change the Remark column content to 'test' and set firstItem.dirty to be true, it won't show the little "dirty flag" marker like it normally will in case of directly editing the Grid.
Is it because the Dirty Flag marker is handled by the Grid and not the DataSource? Any workaround to show the "dirty flag" marker in this case?
Thanks,
Michael.
Hi,
Is it possible to display two weeks at the same time and slide by one week. For eg, 1-14 -> 8-21. The same would apply for month.
The issue is that when you have an event on the last day of the display period, you can't move or extend it to the next "page".


I have a sortable tab strip that has an editor inside each tab. It works great until the user starts moving tabs, then all the content that's inside of the editor disappears. The tab container seems to move properly, it's just losing the actual content within the editor itself.
Here's a link to a demo of the problem: https://dojo.telerik.com/oDUrupUp
Hello,
is there a way to have shape fills that are more complex than rgb-values, for example a diagonal hatch fill?
my knowledge on the map control and svgis limited. my current approach is to create a pattern via jquery when the map is created:
jQuery("map svg defs").html(''
+ '<pattern id="diagonalHatch" width="10" height="10" patternTransform="rotate(45 0 0)" patternUnits="userSpaceOnUse">'
+ ' <line x1="0" y1="0" x2="0" y2="10" style="stroke:red; stroke-opacity:0.4; stroke-width:8" />'
+ '</pattern>';
then i use the def as fill for shapes when they are created:
shape.fill("url(#diagonalHatch)");
this works fine, but i want to have opacity or color depend on other parameters, which would result in many defs.
Do you have any suggestions?
I have a radial guage with 2 pointers. The initial value can be set in the view model for both pointers but when I change the value in the model using Set, only one of the pointers gets changed. How can i modify both pointer values?
I've created a dojo showing this.
https://dojo.telerik.com/AkEKaSes
Hi Team,
To expand on my title, the default value of the 'selectable' attribute is false. However, by accident I discovered, that even if it is false, if you run the select() function on the grid, its default behavior is "multiple,row".
Is this the expected result in this scenario? Personally I would expect there to be no change as i have not specified a selection strategy?
See example, and comment out the selectable attribute: https://dojo.telerik.com/iyaFajoB
Regards,
Grant
Hi all,
I am looking for a way to put multiples commands buttons, for i.e., "Edit", "Delete", "Print" into one split-button dropdown in Kendo Grid.
I've found these buttons here (https://docs.telerik.com/kendo-ui/api/javascript/ui/toolbar/configuration/items.menubuttons) how I wanted but I am not getting the template right for it.
The idea is to have a default clickable button to "Edit" and an dropdown arrow to select "Delete" or "Print".
Thanks in advance.