Our development team updated the Telerik Kendo MVC components to 2017 R2 Version. After this update the all MultiSelect always shown the loading icon.
How can I hide this gif icon from all MultiSelect?
1 Answer, 1 is accepted
0
Accepted
Ivan Danchev
Telerik team
answered on 21 Jul 2017, 08:56 AM
Hi,
The default MultiSelect loading icon is displayed in a span element with classes "k-icon k-i-loading". It is initially hidden so in your case most probably custom CSS causes it to be always visible.
It can be hidden with the following CSS rule:
.k-i-loading {
display: none;
}
Here's a dojo example, with the rule above applied.