Hello,
In my app, I have a form with rows of dojo form elements in them. As you progress through the form, new rows need to be added. I put all of this in a Content Pane. Everything is great in FF, but in IE When I make the call to setContent the page flashes white. I think the flash occurs when the form elements are swapped out with the checkbox and radiobox widget images within the parser. I can't just call the dojo parser because the previous rows are already registered and trying to re-parse causes errors to that effect.
I have tried just setting innerHTML and using setContent with regular html form elements and they both work. I would like to keep the dojo widgets if possible though. I also have set the debug to false and tried parsing only the containing div element.
I guess my question would be if anyone has seen a flash when setContent is used in IE and is there a way around it?
Thanks. And thanks for dojo.

We experienced this same
We experienced this same issue in IE6. Using setContent with markup containing a FilteringSelect widget flashes the whole site white. I never tracked down the cause, but our lame workaround was to toggle the visibility on the pane during the setContent.
So where we would usually do
We instead do
myPane.setContent(html);
myPane.containerNode.style.visibility = "visible";