Hi, I'm working with DialogFlow and Kendo UI for JQuery and ASP.NET to build a chatbot. I have an issue with the RenderAttachment method. No matter what value (carousel or list or anything else) I give to the AttachmentLayout parameter, the messages are displayed with a list format (Vertical aligned). Is it normal? If not, please can ou help me?
encl: my code
Hi
I'm using kendo stock chart to plot the temperature data of each device. Let's say If I want to plot 5 devices data, I push data to kendo DataSource Object (format of data point: {device_id: <temperature, date: <date>}) as soon as I get data from the device. Initially, I had a limit of 5 devices per a chart but again got a requirement of putting 128 devices. At any point, I used to maintain 10 data points on the chart by removing older data points. But I have increased the limit to 100 data points when plotting 128 device data. After making this change the browser was unresponsive and finally crashes.
1. Is this because of the continuous refreshing of the chart (after pushing the data point, I update the chart using the refresh method)?
2. Or stock chart could not handle more data points?
How to handle updating the chart with continuous data from device efficiently. Could someone provide me with the best practice to do this?

Hello,
We have a few grids on a page with "filterable: {mode: row}" enabled. This option causes to render a single grid ~700-1000 ms, without this option it takes 10-20 times faster.
Here is example that demonstrates the issue
https://dojo.telerik.com/ebavEhos
First grid filterable option enabled, the second grid option is not set.
Below the grid, you'll see the time to init each grid.
Are there any ways to improve that performance?
Thanks,
Max

Hi,
I want to make a cell editable on double click instead of single click. I know this can be achieved by jQuery. But still do we have any option in kendo grid.
Thanks in Advance,
Sam
For me, in the latest version of chrome the keyboard shortcuts are not working, even on the documentation example.
https://demos.telerik.com/kendo-ui/datetimepicker/keyboard-navigation
I'm working in MVC 5 and am using Entity Framework.
I want to be able to disable dates in a datepicker where the disabled dates are pulled from a table in the DB, for example the Holidays table where the dates are in a columns called HOLIDAYDATE. I see how to hard code the dates but how do you pull the dates from a data source and load them into the datepicker?

Hi,
I've got a MVVM kendo dropdownlist for my single page application that gets rendered with a layout.showIn(), all is fine and the dropdownlist is populated from my viewmodels datasource but the autocomplete filtering always passes null back to my controller method.
<script type="text/x-kendo-template" id="ddlEventDescrTemplate"> <input id="ddlEventDescription" data-role="dropdownlist" data-value-primitive="true" data-filter="contains" data-auto-bind="false" data-bind="source: autoCompleteDataForEventDescr, value: apdEventCode" data-text-field="APDEventCode" data-value-field="APDEventCode" /></script><script type="text/javascript"> var mainViewModel = kendo.observable({ value: "1", apdEventCode: "None", selectedEventName: null, items: [ { id: "1", name: "Email Addresses" }, { id: "2", name: "User IDs" } ], getSelectedEventName: function () { var selectedEventName = this.get("selectedEventName"); return kendo.stringify(selectedEventName, null, 4); }, getInputValue: function () { return this.get("value"); }, getEventCodeValue: function () { return this.get("apdEventCode"); }, autoCompleteDataForEventDescr: new kendo.data.DataSource({ serverFiltering: true, transport: { type: "json", read: { url: '@Url.Action("GetEventCodes", "SupportTools")' } } }), autoCompleteDataForEventName: new kendo.data.DataSource({ serverFiltering: true, transport: { read: { url: '@Url.Action("GetEventNames", "SupportTools")' } } }) }); var router = new kendo.Router(); router.route("/", function () { mainLayout.render(".panel-body"); mainLayout.showIn("#ddlInputFormat", inputFormatView); mainLayout.showIn("#ddlEventDescription", eventDescriptionView); mainLayout.showIn("#ddlEventName", eventNameView); mainLayout.showIn("#numericCpdHours", cpdHoursView); kendo.bind($("#mainView"), mainViewModel); }); router.route("/CPDBulkHourUploadStep2", function () { mainLayout.destroy(); step2Layout.render(".panel-body"); step2Layout.showIn("#cpdStep2View", cpdGridView); }); router.start();</script>
Controller method:
public JsonResult GetEventCodes(string text) { var eventCodes = _repo.GetEventCodes(text); return Json(eventCodes, JsonRequestBehavior.AllowGet); // eventCodes is returned as an IEnumerable<ViewModel>}
My dropdownlist gets populated fine, but when I try to type in something the autocomplete never gets filtered, upon debugging it turns out that the parameter text is always null it doesn't seem to be passing anything back to the GetEventCodes controller method. Am I missing something here? I've looked at the demos and documentation and it doesn't seem like I'm missing anything.
Side Note: I can't seem to get my templates to render when I move the script/templates to another location e.g. remove it locally, I want to have a separate .cshtml file preferably that will have all my templates and I can call that from my javascript file instead of having it all in one file which creates a lot of clutter.
Thanks.
