6 Answers, 1 is accepted
Hello,
See the following thread on stackoverflow, which discusses such scenario: https://stackoverflow.com/questions/52247040/kendo-datasource-reading-from-async-await-method-which-uses-axios-to-fetch-data
Regards,
Ivan Danchev
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
kendo.data.binders.textAsync = kendo.data.Binder.extend({
refresh: async function ()
{
const text = await this.bindings['textAsync'].get();
const dataFormat = this.element.getAttribute("data-" + kendo.ns + "format") || "";
if (text == null)
{
text = '';
}
$(this.element).text(kendo.toString(text, dataFormat));
}
});
Hello Ksuh,
Thank you for sharing your approach with the community. This feature hasn't been requested yet: https://feedback.telerik.com/kendo-jquery-ui , thus we don't have data on what the interest in it is, to plan it accordingly.
Regards,
Ivan Danchev
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.