accodion arrow

Hi, is it possible to disapear the accordion’s row or block the item in order to keep open always?

Thanks!!!

Hi,

in order to keep an item open (probably you mean multimode) you may use onBeforeActive event. For example the following code keeps “a1” item opened:

dhxAccord.attachEvent(“onBeforeActive”,function(id,state){
if(state == “close” && id==“a1”) return false
return true
})