Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Phil on May 18, 2009 01:07
open dhtmlx forum
Accordion

Hi,

Just a simple question,

How to get Accordion active item ?

Is there a function to do that ?

Thank's
Answer posted by Alex (support) on May 18, 2009 04:39

Hello, 

you can try to use onActive event. It occurs when a cell opens:

open_cell = "";

accordion.attachEvent("onActive", function(id){

open_cell = id;

});

Answer posted by Phil on May 18, 2009 08:39
Thanks