I am using the ajax accordion panel toolkit in my default page. As below:
<ajaxToolkit:Accordion ID="Accordion" SelectedIndex="0" ContentCssClass="" HeaderCssClass="" HeaderSelectedCssClass=""
runat="server" FadeTransitions="true" FramesPerSecond="30"
TransitionDuration="350" AutoSize="None">
<Panes>
<ajaxToolkit:AccordionPane ID="AccordionPane1" runat="server">
<Header>
...
Now the funny thing is the IE7 can't function at all on the default page, while firefox has no errors at all.
So did anyone have the same issue? is this a bug in the IE7?
...
You may find that IE is being pushed into quirks mode which may be causing you issues. The Toolkit assumes IE is instandards mode. For more information on Quirks Mode seehttp://en.wikipedia.org/wiki/Quirks_mode
-Damien
Thanks for your quick replay.
Here is my document type:
<!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" >
Refer to the Quirks table on Wiki, it's not Quirk under IE7.0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Do you have any other solution?
There must be an overflow style being applied... Maybe you have something set in you CSS that is effecting your panel?
You can use Firebug to see applied styles (in Firefox) or the IE Developer Toolbar will do similar in IE.
-Damien
Yeah, you were right. I omited overflowed div segment, now it's working again.
Another method sharing is that:
when the table width = 100%, better to use the autoSize="Fill" in that case, the layout will be good, no scrolled bar on the side or bottom.
No comments:
Post a Comment