Hi!
When the page loads ,I want to show the Specified row of accordion? I use the mothod “show()” ,but it doesn’t work
dhx.ui({
container:"accordion_container",
type:"wide",
cols:[
{ view:"accordion",
type:"wide",
multi:"mixed", width:512,
id:"horizontal_accordion",
cols:[
{ header:"Cell A",id:"cell_a" },
{ header:"Cell B",id:"cell_b" },
{ header:"Cell C",id:"cell_c" }
]
},
{ view:"accordion",
type:"wide",
id:"vertical_accordion",
multi:"mixed",
rows:[
{ header:"Cell A",id:"cell_a" },
{ header:"Cell B",id:"cell_b" },
{ header:"Cell C",id:"cell_c" }
]
}
]
});
$$("cell_a").show();
Thanks a lot for your help