To start I am super new to kendo and I have really enjoyed it.
I have written a custom edit method which launches a kendoDialog when the edit command button on the grid is clicked containing that specific grid row's data (to be edited) the issue I'm having is that it only works one time. After that, when I click edit the dialog appends to the DOM but with a display of none. So if I wanted to edit another record I would have to refresh the screen which obviously isn't ideal. I have a feeling I am just missing something and thought someone might be able to see something I'm missing/need to add. Here is the code:
Here is the command in my grid:
{ command: {text:"Edit", click:GetMessageToUpdate}, title: " ", width: "90px" }
This is the GetMessageToUpdate function:
function GetMessageToUpdate(e) {
e.preventDefault();
var grid = $("#messagesGrid").data("kendoGrid")
var obj = { messageID: grid.dataItem(e.toElement.closest("tr")).messageID };
$.ajax({
url: "URL_FOR_UPDATE_METHOD",
type: "POST",
data: JSON.stringify(obj),
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function (response) {
$("#errorRemove").show();
},
success: function (response) {
console.log(response.Data)
let msgObj = response.Data
renderUpdateModal(msgObj)
$('#updateErrorMessage').hide()
$('#updateSuccessMessage').hide()
cache: false
}
})
}
This is the code for the renderUpdateModal:
function renderUpdateModal(obj) {
console.log(obj)
$("#editContainer").kendoDialog({
width: "450px",
title: "Edit Message",
closable: true,
modal: true,
content: `Here is where the dialog code lives I didn't think it was important but if you need it I can supply it!`
});
any help or suggestions are super appreciated.
Thanks,
Jordan

Is there any documentation on how to implement the search bar that can be found on the telerik website? (see attachment)
The idea is to be able to accept users' input, while giving the option of limiting search in the different grid-columns, for example: All, Col1, Col2.
Thanks in advance!
Is it possible to place several elements on one page?
Only one element works fully

Hi there,
I'm struggling to make a kendo numeric textbox control make the user input as readonly but allow the user to use the spinner. The readonly method makes the control not usable entirely. I want only the user input box to be disabled, but the spinner should be working as is.
Is there any method or configuration that I can use? or does this feature is not supported on the current version?
Regards,
Junius
I am using Kendo grid with angular js. In some cases the data in grid is long text like "New, Initial Auto-Polling Config, Auto-Polling " or greater in length. I want all data to be displayed the data is getting trimmed down and ellipsis getting added making above text as "New, Initial Auto-Polling Conf.."
Also the inner HTML dooesn't have the original text.
Please help me best possible solution to display the text

I'm loading Kendo Grid in a modal window over the same HTML element. The grid has grouping implemented on it.
Now when I try to collapse the rows it works first time, but when I try to close the modal and re-open another kendo grid which is again on the same HTML element the collpase button does not work. it will work the 3rd time i.e. it works every alternate times I open the window
Things I haved tried so far
Clearing html before grid initialization
Destroying kendo grid before initialization
Any help will be appreciated.
as you can see here:
https://dojo.telerik.com/OrOqOHaV
If I create a grid from a table the pager doesn't work correctly ("No items to display")
Is i init the grid from div element the pager works perfectly.
some hint, please?
many many thanks
Hello
I need to switch eventTemplate of week view after clicking custom button between
var smallEventTemplate = `<div class="k-event-template">#: title #</div>`;
var bigEventTemplate = `
<div class="k-event-template">
<p>
#: kendo.toString(start, "hh:mm") # - #: kendo.toString(end, "hh:mm") #
</p>
<h3>#: title #</h3>
<p>#: description #</p>
</div>`;

AutoComplete for Kendo UI
Prevent Custom Input
A new article on how to allow only existing values in a Kendo UI AutoComplete widget.
Change DataSource Dynamically
A new article on how to dynamically change the DataSource based on user selections made through radio buttons in a Kendo UI AutoComplete widget.
We have a stacked area or line chart in which the categoryAxis is a date. In each series, values are aggregated (summed).
We are wanting to implement an export to CSV of the data which makes up the displayed chart. I've looked through all of the chart options, but cannot find a way to get those aggregated series values.
Is there any way to do this without having to write my own aggregation logic?