Posted by Peter Rockey
on 21.11.2006 13:34
First time of loading accordian scroll working perfectly. After opening 
other pages in accordian, again i am trying to open first one or other.. 
that time scroll is not working. This error only in Firefox2.0. In IE6 
it working fine.

How can I solve this.

Help!

Thanks

Peter
Posted by Jose Garcia
on 05.01.2007 15:50
Hi Peter

I'm using current build of Rico Framework and the div scroll bug
happends to me with Firefox and Opera.

To solve it, I modified the RicoAccordionEffect class in ricoeffects.js
like:

Rico.AccordionEffect.prototype = {
  initialize: function(toClose, toOpen, height) {
    ...
    // COMMENT THIS CODE TO SOLVE THE BUG
    /* if (!navigator.appVersion.match(/\bMSIE\b/)) {
      Element.makeClipping(toOpen);
      Element.makeClipping(toClose);
    } */
    ...


I tested it in Firefox 2 and Opera 9, 9.1 and seems to work fine.

Bye.