When viewing a plan in Month view the task titles are cropped within the taskbar by default. What are my options please to overcome this?
Can I specify the title to be displayed to the right of each taskbar? Can I set the title to not be cropped and overflow to the right of the taskbar? Do I have to create a custom template to change anything from the default behaviour?
Many thanks.

I have a map where I have markers that are shipments (individual markers) and loads which are a collection of markers joined by lines. I can right click on a marker that is part of a load and get a menu with the option to remove shipment from load. In the mode for the remove shipment from the load I am accessing the map layers. In the removal process, I have to rebuild the map items. I rebuild the map layers by getting the datasource of the necessary layer, setting the data for the datasource to an empty array ([]) and then pushing in the new data to the datasource.
I have 2 shape layers and 1 marker layer.
The first time I right click and remove a shipment from a load it works perfectly. I try it again ( the context menu shows and goes into the called function) and get the following error:
TypeError: Cannot read property 'layer' of undefined
In the called function,
e.target = span.k-marker.k-marker-pinpink.removeFromShipmentContextMenu
$(e.target) finds the element
But $(e.target).data("kendoMarker") returns undefined.
What am I missing in reload of the map objects?
Thanks
Jason
01.public JsonResult Autocomplete(string query, int companyId) {02. var ret = Dao.Task.GetMany(i => i.CompanyId == companyId);03. 04. if (!string.IsNullOrEmpty(query)) {05. query = query.ToLower();06. ret = ret.Where(i => i.Subject.ToLower().Contains(query));07. }08. 09. var res = ret.Select(i => new {10. id = i.Id,11. name = i.Subject12. });13. 14. return Json(res, JsonRequestBehavior.AllowGet);15. 16. }Hi, I browsed across several similar questions without finding what am I doing wrong:
In Kendo JQuery Grid, I'm not being able to get dataBound event work even in this trivial example(attached). However, the dataBinding event is being fired as expected. What's wrong?
(Can't find any meaningful difference compared with the Telerik grid event demo. https://demos.telerik.com/kendo-ui/grid/events)
Any hint will be greatly appreciated.





Hello, av been using Kendo UI about a week now, I was wondering if the following was possible:
1. change the layout from treeview/Treelist to a grid, but it should come as a dialog (see attached image)
2. How to do I change the datasource to point to a location/file that is located locally?