I have resolved the issue. just added jQuery.noConflict() after f:view tag. ..alee http://techboard.wordpress.com
On Tue, Sep 23, 2008 at 12:57 PM, _alee <[EMAIL PROTECTED]>wrote: > Hi, > > I have read the tutorial over > > http://livedemo.exadel.com/richfaces-demo/richfaces/jQuery.jsf;jsessionid=6E003F42820E67DE288F81B792CF7915?c=jQuery&tab=usage > > to integrate the jQuery in richFaces. > > Eearlier, I had following jQuery script .. > Code: > > $().ready(function() { > $("#MySplitter").splitter({ > type: 'v', > initA: true, // use width of A (#LeftPane) from styles > accessKey: '|' > }); > // Firefox doesn't fire resize on page elements > $(window).bind("resize", function(){ > $("#MySplitter").trigger("resize"); > }).trigger("resize"); > }); > > > > > which i replaced with this one > Code: > > <rich:jQuery selector="#flexible-top" name="mysplit" > query="splitter({type: 'v',initA: true, accessKey: '|' })" > timing="onload"/> > > > > > Now, the jQuery is working fine but other richface components (tabs, > calendar) has stopped working. How can i fix it ? >