Dhtml tree loading text problem

Hi,

  I having three tree in single page. The first two tree will load at the time of page loading itself. The tree loading is optional one. if user need they have click the radio button after that only it will load. my problem is, i am using this method to show the label at the time of tree loading

tree.setOnLoadingStart(func_a);
tree.setOnLoadingEnd(func_b);

function func_a() {
document.getElementById(“b_1”).style.display = “”;
document.getElementById(“b_2”).style.display = “none”;
if (document.getElementById(“a_1”).checked)
}
function func_b() {
document.getElementById(“b_2”).style.display = “”;
document.getElementById(“b_1”).style.display = “none”;
if (document.getElementById(“a_1”).checked)
}

it’s is working fine for first two trees. If the user want the third tree they click the button, The tree visible, But the loading label is not shown. This is my problem can you help me

Hi,

check that setOnLoadingStart and setOnLoadingEnd are not called for the third tree.

If they are not called, please provide the demo where we could recreate the problem.