Accordion isOpened function returns error

The “isOpened” function of the Accordion control returns a javascript error related to an unknown object:



dhxAccord.idPull[itemId]._content.className



After reviewing the source code, it appears that dhxAccord isn’t ever defined and should, instead, refer to “this.idPull”. Is that correct?

Hello,

Edit dhtmlxaccordion.js

this.isActive = function(itemId){
    return (this.idPull[itemId]._isActive===true?true:false);
}

Thanks!  That works!