function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
kenny.mccollkenny.mccoll 

jquery & panelBar

Anybody seen this one before?... I have a page with several panelBars on it, and it works fine... until I included jquery in the page.  No other javascript added, just adding this line stops the panelBar items from opening:

 

 

<apex:includeScript value="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"/>

 

 

 

Also seems to break tabPanel...  (both tabPanel and panelBar had switchType="client")

 

Is this a known bug?  Any workarounds?

 

Thanks...

kenny

kenny.mccollkenny.mccoll

Correction ... the tabPanel works fine as long as I'm using the jquery noConflict function 

var rkjq$ = jQuery.noConflict();

 

... the panelBar is still not working for me, but the tabPanel meets what I'm trying to do anyway...

 

 

chris_parxchris_parx

you are right ... very annoying bug.

osamanosaman

Thanks Kenny. It really helped.