Is there a way to get a value of all cell 1 for every row within the grid without selecting a row on button click?
I want to grab all of the ID's without selecting a row so I can pass those Id's to another function
Grid looks like thisid Name1 Stewart2 Jones3 Smith4 Johnson
I have an application that needs to support QR codes and I am analysing different solutions. Since I am already using kendo in the application I though I should test it. However when I tried with an example I saw that the code generated is not the same as the other QR code generators out there on the internet. All that I tested resulted in the same image, however the telerik resulted in a different image.
What QR code does it generate?
the text I used was "ABC123456789" on
https://racoindustries.com/barcodegenerator/2d/qr-code/
https://www.qrstuff.com/
https://ro.qr-code-generator.com/
https://www.the-qrcode-generator.com/
and all generated the same image but the https://demos.telerik.com/aspnet-core/qrcode/api generated a different image.
Is there a configuration that will generate the same code like the others code generators

I am using a dropdown list that based on the selected item a second dropdown need to be cleared. Selecting an item from the UX fires the change event of the first dropdown and the second one will be cleared only if I trigger the change event manually. If I do that the value of the first dropdown does not get updated. I used select(-1) and value ("-1") and same behavior. Here is my code, I will appreciate any hint on this.
$("#ddl1").kendoDropDownList({ dataSource: [ { value: "1", text: "Option1", priority: 0 }, { value: "2", text: "Option2", priority: 1 }, { value: "3", text: "Option3", priority: 1 } ], dataTextField: "text", dataValueField: "value", optionLabel: { value: "", text: "-- Select one --" } }).change(function (e) { var ddl2 = $("#ddl2").data("kendoDropDownList"); if (this.value == "1") { ddl2.value("-1"); //ddl2.select(-1); //ddl2.trigger('change'); //with this value of ddl2 is cleared ("-- Select one --") and value of ddl1 does not change } else { /**/ } validateSection(4); }); $("#ddl2").kendoDropDownList({ dataSource: [ { value: "Y", text: "Yes" }, { value: "N", text: "No" }, { value: "NA", text: "Refused to answer" } ], dataTextField: "text", dataValueField: "value", optionLabel: { value: "", text: "-- Select one --" }, }).change(function (e) { validateSection(4); });

Sample: http://dojo.telerik.com/OCURa
I'm trying to use a mobile Collapsible widget with icons in the header, but toggling the collapsed state will break those icons marked with the km-icon class. Icons in the body are unaffected.
I have been trying to find a way to insert a button into a Kendo ToolBar widget dynamically. I would like to insert it into a specific location among existing buttons on the ToolBar. The only functionality I see is an add function that will add a new button, but no way to insert it anywhere.
In my search on this topic I found this older thread:
https://www.telerik.com/forums/insert-item-at-the-beginning
which resulted in this feature request:
https://feedback.telerik.com/kendo-jquery-ui/1359920-kendotoolbar-dynamically-insert-items-insertafter-insertbefore
I am hoping that I am not the only one that has had a similar need. Is there any other way to be able to insert a new button?
Thanks in advance.
Kerry



The gantt.configuration.toolbar add task(append) , pdf, custom buttons only update the top of the control. This is demonstrated in almost all of the the Telerik Dojo examples https://docs.telerik.com/kendo-ui/api/javascript/ui/gantt/configuration/toolbar.
I'd like an example of how to hide the bottom tool bar.
