Hi, its me again with (gantt) dataSource and changes... and this is pretty urgent :(
I have a following situation, I need to change 5-10 resources/assignments on gantt task and I do it using pushUpdate method by sending an array of items to be updated. (dataSource.pushUpdate(arrayOfItemsForChange))
However this slows widget down because even if one pushUpdate is called, dataBound and dataBind events are triggered for each of them, and these events have some custom code as well (some proposed by support people here as well).
I did some measurements and for 7 items it takes approx 6 seconds to handle this on gantt, during which gantt "freezes" not allowing any action on the timeline.
Is there any way I can have widget (gantt) trigger dataBound and dataBind only once, at the and end then render everything it needs?
Thank you very much.
Best regards,
Vedad

Hi,
I'd like to use stockchart to display my data across thirty years scale with proximately two data per week. However, setting baseUnit to "days" will cause categoryAxis's label overlapping each other. How can I display the data "daily" in chart and make categoryAxis's label display act like setting baseUnit to "monthly" or "yearly"?
Thanks,
Bob
Hi,
I've worked on various ways to prevent drawer closing when itemClick event triggered but I couldn't figure a solution. Is there a way to disable auto closing when itemClick event performed?
Thanks.

In the change method of kendoui,
when I get the Gantt object and select the currently selected row,
why does the "maximum call stack size exceeded" error occur?
This code ("gantt.select("tr:first");") During execution,
"maximum call stack size exceeded" error occur. why?
We look forward to your reply!
Thanks!

Hi, Dev Team!
Sometimes my breadcrumb width are bigger than device width and breadcrumb items become hidden.
How i can keep breadcrumb items always visible with line break if it needed?
https://demos.telerik.com/kendo-ui/breadcrumb/index
When a user clicks on the masked text box and there is no current value then the cursor should be at the beginning (left).
This does not happen. But you've had forum posts in the past and you told the poster that it should do this. I even see two bugs written for it: here and here. They both seem to indicate this is the expected behavior.
This doesn't work even in the online demos. Using a standard desktop with Chrome or using a touch screen device (Surface) I get the same behavior. The cursor goes wherever I clicked.
How can I force the cursor to always go to the far left?

Hi,
I'm working on Kendo Grid with Angular 1.7 with Typescript. So far, displaying dropdown list during edit (popup) mode is working as expected. I'm currently struggling with displaying text instead of bound value on grid column. The model of data source includes 2 properties: "Label" and "Id". I've tried to follow these examples:
1. https://demos.telerik.com/kendo-ui/grid/foreignkeycolumnbinding
2. https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columns.values
but with no luck. After "Update" button is clicked, the grid shows "Id" instead of "Label".
Here is my custom editor:
columnConfig.editor = (container, options) => { $('<input required data-text-field="Label" data-value-field="Id" data-bind="value:' + options.field + '" /> ') .appendTo(container) .kendoDropDownList({ autoBind: false, dataTextField: "Label", dataValueField: "Id", dataSource: { data: CustomPickListItems } }); };
How can I make the grid display "Label" but save "Id" to local data?
I'm working on an application that has 2 listviews.
This is how the application should work.
One listview has a list of products and the other listview is a selected-products. In the products listview should allow a user to drag products & sub products over to the selected-products listview.
I posted this question with the code sample on stackoverflow. Here is the link:
https://stackoverflow.com/questions/63241305/i-need-help-using-kendo-ui-for-jquery-i-need-to-be-able-to-drag-items-from-one
Can anyone here help me out?