0

How to remove all treeview nodes

I am new to YUI development. I have a project that has a reset button. When I click the reset button, everything reset. I don't know how to remove all treeview nodes or the whole treeview. I appreciate your advises.

by
6 Replies
  • You could track the items in the view when create and use the suicide() function.

    CODE
    this.myobject.suicide();
    0
  • QUOTE (WidgetRealm @ Jan 31 2011, 07:26 AM) <{POST_SNAPBACK}>
    You could track the items in the view when create and use the suicide() function.

    CODE
    this.myobject.suicide();


    Thank you for your help. However I got an error, it says suicide is not a function. Here is my code, "cs_tree_menu" is the id of my treeview.

    CODEBOX
    var tree = document.getElementById("cs_tree_menu");
    tree.suicide();
    0
  • I think you might be in the wrong forum.... Are you building an TV application?
    0
  • QUOTE (tina @ Jan 31 2011, 11:03 AM) <{POST_SNAPBACK}>
    Thank you for your help. However I got an error, it says suicide is not a function. Here is my code, "cs_tree_menu" is the id of my treeview.

    CODE
    var tree = document.getElementById("cs_tree_menu");
    tree.suicide();

    suicide is a wrapper method, it's not available on the dom element. Do this instead:
    CODE
    var tree = $("cs_tree_menu");
    tree.suicide();

    By the way, we don't use YUI, we use KONtx.
    0
  • QUOTE (Benjamin Toll @ Jan 31 2011, 01:15 PM) <{POST_SNAPBACK}>
    suicide is a wrapper method, it's not available on the dom element. Do this instead:
    CODE
    var tree = $("cs_tree_menu");
    tree.suicide();

    By the way, we don't use YUI, we use KONtx.

    Ops, I guess I am in the wrong forum. I am using YUI to build an application front page. Thank you everyone for your help. I am using Javascript and YUI, if anyone know how to remove treeview using Javascript or YUI, please I need your advise.
    0
  • QUOTE (tina @ Feb 2 2011, 12:58 PM) <{POST_SNAPBACK}>
    Ops, I guess I am in the wrong forum. I am using YUI to build an application front page. Thank you everyone for your help. I am using Javascript and YUI, if anyone know how to remove treeview using Javascript or YUI, please I need your advise.

    http://yuilibrary.com/forum/index.php
    0

Recent Posts

in General - Yahoo! TV Widgets