Hi all,
First let me say this stuff's awsome and has some great potential especially since you guys ship the source (cue standing ovation).
I have the current release of the toolkit as well as the current release of the AJAX extensions.
I have an accordion inside a scrollable div with custom scrollbars (ooooh...) It works fine in IE6, IE 7, Mac Firefox as well as safari however it doesn't work in the PC version of firefox.
What I mean by "work" is scroll and only show the content that is within the limits of the div.
After hours of searching and testing I realized it was because I have autoSize parameter set to none which means that the accordion control will have an overflow set to auto as well as all of the content panes.
Now if I change it to one of the other two parameters Fill, and limit the header panes will no longer show up outside of the div but the content panes will.
Long story short I had to modify the the javascript in the source to set it all to overflow:hidden... now I imagine I might run into issues with that but I'll cross that bridge when I get there.
So now that I made the change I need to rebuild the project.
I got the following errors:
Error 1 'opacity' is not a known CSS property name. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 402 2 C:\...\SampleWebSite\
Error 2 'filter' is not a known CSS property name. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 403 2 C:\...\SampleWebSite\
Error 3 'filter' is not a known CSS property name. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 427 2 C:\...\SampleWebSite\
Error 4 'opacity' is not a known CSS property name. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 428 2 C:\...\SampleWebSite\
Error 5 'lemonchiffon' is not a valid value for the 'background-color' property. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 738 23 C:\...\SampleWebSite\
Error 6 'lemonchiffon' is not a valid value for the 'background-color' property. C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\SampleWebSite\StyleSheet.css 759 23 C:\...\SampleWebSite\
Error 7 The namespace 'AjaxControlToolkit' already contains a definition for 'AnimationExtender' C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\AjaxControlToolkit\AnimatedModalPopup\AnimatedModalPopupExtender.cs 21 18 AjaxControlToolkit
Error 8 The namespace 'AjaxControlToolkit' already contains a definition for 'AnimationScripts' C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\AjaxControlToolkit\AnimatedModalPopup\AnimatedModalPopupScripts.cs 22 25 AjaxControlToolkit
Error 9 The namespace 'AjaxControlToolkit' already contains a definition for 'AnimationExtenderDesigner' C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\AjaxControlToolkit\AnimatedModalPopup\AnimatedModalPopupExtenderDesigner.cs 16 18 AjaxControlToolkit
Error 10 The namespace 'AjaxControlToolkit' already contains a definition for 'AnimationJavaScriptConverter' C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\AjaxControlToolkit\AnimatedModalPopup\AnimatedModalPopupJavaScriptConverter.cs 20 20 AjaxControlToolkit
Error 11 The namespace 'AjaxControlToolkit' already contains a definition for 'Animation' C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\AjaxControlToolkit\AnimatedModalPopup\AnimatedModalPopup.cs 28 18 AjaxControlToolkit
errors 1-6 are just stylesheet errors so those aren't a big deal
errors 7-11 got me a little worried.
Any help would be greatly appriciated