Hello Alan,
Thank you for the feedback. It is important and I will address it to the Team.
I believe we could take some measures to avoid this confusion and let you know what is changing prior to upgrading.
Regards,
Nikolay
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Hello Alan,
Please accept my apologies for the inconvenience that this change has caused you.
This is, indeed, a design decision and all the dropdown inputs now render the loading indicator inside the inputs while keeping the arrow button.
You can overcome this by hiding and showing the arrow button inside the requestStart and requestEnd data source event handlers.
dataSource: {
transport: {
read: {
dataType: "jsonp",
url: "https://demos.telerik.com/kendo-ui/service/Customers"
}
},
requestStart: function() {
$(".k-input-button").hide();
},
requestEnd() {
$(".k-input-button").show();
}
}
Dojo demo: https://dojo.telerik.com/oVSFEMWR
I will also add this change to the documentation.
Regards,
Nikolay
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.