AJAX Accordion Control "Flickering" Issue while implementing in DotNetNuke Site
While working on DNN 5.0 site, I was trying to have a left menu navigation using AJAX Accordion. Even, I got succeeded in implementing that but i come accross an issue of - flickering the Accordion control in IE while opening and closing and navigating thru panes.
After googling, I came to know about the solution and applied which worked successfully.
Frist is, Turn off FadeTransitions Property, i mean set it to "False", :( yes, its the cute effect everybody want to have while using accordion with. But, while I set it to false and removed the TransitionDuration property - The problem of flickering issue got solved. So, everybody speak with me - "I dont want FadeTransition effect :) in DNN with Accordion!".
Please let me know if any of you have some any other solution than above which would solve flickering accordion as well as we would have FadeTransition effect as well.
Another so called solution which I found was (but, it didnt worked for :( me) - Setting the DocType of the HTML template which being used for skinning as:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
Any comments!? Hope it would help to anybody who want similar functionality without flickering :)