Hello,
I used RadWindow and I have a "common" issue with Internet Explorer when using "Animation='Fade'"... The font cleartype rendering is disabled.
I said "common" because this is a well known issue of Internet Explorer : the opacity is managed by CSS attribute "filter:alpha(opacity=xxxx);" that automatically disable the cleartype rendering... Even when "filter:alpha(opacity=100)";
I have the same issue when using jquery.fadeIn and the workarount is to remove the CSS attribute filter at the end of the animation.
How can I proceed to correct the problem in RadWindow ?
May be have your a standard workarount (not found despide search in forums) ?
Thanks in advance
I used RadWindow and I have a "common" issue with Internet Explorer when using "Animation='Fade'"... The font cleartype rendering is disabled.
I said "common" because this is a well known issue of Internet Explorer : the opacity is managed by CSS attribute "filter:alpha(opacity=xxxx);" that automatically disable the cleartype rendering... Even when "filter:alpha(opacity=100)";
I have the same issue when using jquery.fadeIn and the workarount is to remove the CSS attribute filter at the end of the animation.
$(
".MyElem"
).fadeIn(
"fast"
,
function
() {
try
{
this
.style.removeAttribute(
"filter"
); }
catch
(ex) { }
});
May be have your a standard workarount (not found despide search in forums) ?
Thanks in advance