Accordion load on demand


Hi,



Is there any way for accordions items to be loaded on demand as it is done in Tabbar using ‘iframes-on-demand’ ?



Thanx & Regards,
GD



 

Hello,

Unfortunately, not.

You can do this manually, like this:

var isAttached = false;
dhxAccord.attachEvent(“onActive”, function(id){
    if (id==“neededCellId” && !isAttached) {
        dhxAccord.cells(id).attachURL(…);
        isAttached=true;
    }
})


Thank you for your prompt response.



I’ll try this.