I hope someone can help because I have been desperately trying to figure this out on my own but I am being overwelmed with how many sources there are for plugins how many versions and how many discussion groups. It is very hard to follow along with the development of this framework.
I have created a page that requires the use of an accordian on the same page as multiple instance of tabs. Independently they work but when I put them together they blow each other up. Here are the development sample pages: http://conted.nybg.org:8080/WebModule/jsp/ddm/test_profile_bugs5waccord.html http://conted.nybg.org:8080/WebModule/jsp/ddm/test_profile_bugs5wtabs.html http://conted.nybg.org:8080/WebModule/jsp/ddm/test_profile_bugs4.html When I put them together I get one error in firebug and they both don't work, the error is $ui.accordian is not a constructor in Firefox on a PC.(http://conted.nybg.org:8080/WebModule/jsp/ddm/ test_profile_bugs4.html) When I put the accordian jquery call in the external js: conted_new2.js above the tabs call and comment out the jquery.ui.core.js reference the accordian works but the tabs do not and I get two errors "$widget is not a function" and "uncaught exception [Exception... "Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS)" location: "JS frame :: http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js :: anonymous :: line 12" data: no]" in Firefox on a PC. (http:// conted.nybg.org:8080/WebModule/jsp/ddm/test_profile_bugs5waccord.html) When I have all external js files available and the accordian jquery call in the external js file: conted_new2.js below the tabs call the accordian does not work but the tabs do. And I get one error $.ui.accordion is not a constructor, again in Firefox on a PC. (http:// conted.nybg.org:8080/WebModule/jsp/ddm/test_profile_bugs5wtabs.html) So I think I can tell two things: 1. Something in the jquery.ui.core.js is conflicting with the accordian code because when it runs (not below tabs) ui.core seems to prevent either from working until this reference is removed. And because the tabs are dependant on ui.core the tabs malfunction. 2. For some reason the tabs code will not run if it is below the accordian script and vise versa. The jquery files are derived from these 3 sources: 1. The ACCORDIAN I am using was derived from * jQuery UI Accordion 1.6 * * Copyright (c) 2007 Jörn Zaefferer * * http://docs.jquery.com/UI/Accordion * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Revision: $Id: jquery.accordion.js 4876 2008-03-08 11:49:04Z joern.zaefferer $ * 2. The TABS UI CORE file is derived from here: /* * jQuery UI @VERSION * * Copyright (c) 2008 Paul Bakaus (ui.jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI */ 3. and the TABS file is derived from here: * jQuery UI Tabs @VERSION * * Copyright (c) 2007, 2008 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * http://docs.jquery.com/UI/Tabs * * Depends: * ui.core.js */ Thanks for your time. Don
-- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.