Our target upgrade the KendoUI to latest version i.e. v2019.2.619 and it can be able to run in VS2019 locally without any issue. However, after the application deployed to IIS server, the icon cannot show properly. I have using browser (Chrome) debug mode to trace and find that the content value in kendo.common.min.css is changed as below in IIS server
.k-i-more-vertical:before { content: ""; }
In BundleConfig.cs, we define the Bundle as below sample code :
bundles.Add(new StyleBundle("~/bundles/kendoUI").Include(
"~/Content/styles/kendo.common.min.css",
"~/Content/styles/kendo.default.min.css"
));
In addition , we also check the source code in IIS server and the content is correct, here is the sample
.k-i-more-vertical:before {
content: "\e031"
}
Remark : The DejaVu and glyphs is already added in source code as ~\Content\styles\fonts\DejaVu and ~\Content\styles\fonts\glyphs
Please advise the possible solution. Thanks you very much.