Hi, Dev Team!
How get address by click at anything at map? (coordinates, country, city, street and house number).
Please, give some simple sample.
url : https://dojo.telerik.com/@kjvjung/afUwuZah
Freight must be number
so good : Freight: { type: "number" }
but, I just want the Freight in tr.k-filter-row to be autocomplete, not numerictextbox.
How???
thank you.

I have a datepicker as part of a form. But while I can change the shown text manually, via the calender or through javascript, the internal value of the element seems to stay the same and I'm not sure what I'm doing wrong here:
In the cshtml:
<input asp-for="ViewModel.Start" style="width: 8rem" class="order-field">in the js:
const startDatepicker = $("#ViewModel_Start").kendoDatePicker({ focus: () => { setItem(this.getAttribute('id'), this.value()) }, change: onChange,});
When I inspect the element in my browser, "value" is still set to what it was initialised with from the binding despite showing an other date.So this.value() always returns the initial value, not the shown value.
When I save the form though, the value on screen is saved.

Hello,
Is there any way to prevent certain records from being dragged under each other?
For example,
I have people as parents and tasks as children. I don't want to allow people to be children of other people and tasks to be children to other tasks. I also do not want to allow people to be dragged under tasks. However, I still want to be able to assign tasks to people.
Is there any current or planned support for this?

var btnClicked = e.target.closest(".k-split-button");var btnSplitParent = btnClicked.closest(".k-split-button");if (btnSplitParent.length > 0 && !btnClicked.hasClass("k-split-button-arrow")) { setTimeout(function () { btnSplitParent.find(".k-split-button-arrow").mousedown(); btnSplitParent.find(".k-split-button-arrow").mouseup(); }, 100);}
I have a remote data source which I use to populate the grid.
The grid has around 7000 rows and 30 columns, few rows also have a sub grid with maximum of two rows in each sub grid.
Using inbuilt filtering of grid based on a column takes about 3-5 seconds.
During that duration I want to show a spinning/loading icon.
I have the approach in the code below with no success.
The spinning/loading icon does not show up while filtering the grid and waiting for the grid to filter.
When I debug the page and put break points in JavaScript, I can see the loading icon on the grid as expected but its not there in normal use without the debugger open.
dataBound: function () { kendo.ui.progress($("#grid"), true); addSubgrid();
highlightLines(); disableLineItems(); if ((!isGridEditable)) { makeGridReadOnly(); } kendo.ui.progress($("#grid"), false); },
Hi,
I need Treelist Filter to show Parent row along with all its child nodes. Is this possible?
Appreciate any help.
Thanks,
Sanjay