
Hello
Is there any way to keeping all the messages in chat ui, is there a workaround so that I store the historical messages on user return then show the historical messages?
Thank you

I have an issue where some dates do not get pulled from data source while others do.
All source dates are in python datetime.date object. Example of two dates where one works, one does not. Along with relevant code snipped from schema/model:
1995-05-01
1990-09-10
fields: {
rozuctovanie_vyhotovenie: {type: "date"},
rozuctovanie_fakturacia: {type: "date"},
}
And resulting dates shown in final grid; as you can see the September date didn't even get loaded. I'm honestly unsure if this is a problem of sourcing from python datetime.date object or something else.

Can we use "Kendo UI for jQuery" with Angular version 1.2.16? Is it compatible with angular 1.2.x?
Is Telerik provides support for Angular version 1.2.x?
Due to some reason we can't upgrade angualrJs version in our application and planning to use Kendo UI for jQuery hence want to ensure about the compatibility and support before using it?
I will appreciate quick response on this.
Thank you!

Dear Kendo team,
Is there a way to bind a cell to a dropdown list on selection of the same row's another dropdown list's change event?
I have attached a screenshot. On selection of B3's dropdown list, I need to generate a dynamic dropdown list in C3 column.
Can you help me with an example code? I tried to search this in the forum, but couldn't find the exact answer.
Thanks in advance :)
Best Regards
Iffat

Hello.
I want to change the pointer color of linear gauge based on its current value like the colors config of Arc Gauge.
Currently I made it with MVVM change event (here's the code).
https://github.com/kent010341/KendoUI-demo/blob/master/mvvm_change_event.html
I'm wondering if there's an easier way to make this (such as data-bind the pointer color directly).
Thanks.

How can I use javascript function for defining template for datepicker. Only strings are working now for templates. And if I use strings for template the corresponding function used inside the template should be global.
$("#datepicker").kendoDatePicker({ value: today, dates: birthdays, weekNumber: true, month: { // template for dates in month view content: function (e) { alert(e);}, weekNumber: '<a class="italic">#= data.weekNumber #</a>' }, footer: "Today - #=kendo.toString(data, 'd') #", });