Browse By Tags

  • How to check expanded mode of Node in Ultrawebtree using javascript

    Hi Guyz,

    THanks in advance for replying me.

    I want to check the mode of each node using javascript.I mean node is in expanded mode or collapse mode.Please let me know if any one have any idea about it.

  • UltraWebTree doesn't work in SP2010 dialog box

    Hi,

    I'm having an issue with using an UltraWebTree object inside a SharePoint 2010 Beta 2 dialog box.  Due to how SharePoint's dialog framework works, the tree is pulled out of the aspnetForm in the DOM whenever the dialog is opened.  To compensate…

  • WebTree's Node Check Box From ClientSide AddChild Method

    I am trying to add a checkbox to a node in the tree. The nodes are being added to the tree from the javascript.

     

    var loNewNode = loWebTreeNode.addChild("Node Name");

    How can I enable the check box from the client side (without inserting in…

  • WebTree expand and collapse in Conditional Update Panel

    I have two web trees in a page. One of the trees is inside a conditional update panel. The other tree is placed outside the panel. When the page loads for the first time every thing works fine. But when the conditional ajax update panel is updated, the…

  • tree.getNodeById not working

    I am using the Infragistics Build Version: 7.3.20073.1043 WebTree control. In the NodeChecked event handler, I'm using the client side getNodeById function of the tree control in the javascript. My code is as follows:

    function folio_NodeChecked(treeId…

  • Resizing Tree in Firefox

    Hi,

    Using the information in the thread at http://news.infragistics.com/forums/t/5766.aspx, I've been able to get a WebTree to resize from client-side Javascript in Internet Explorer, but the same method does not work with Firefox, I have not tried Safari…

  • WebTree client-side resize not working

    Hello,

     I have a WebTree control embedded on 5 groups on a WebListBar inside the left column of an HTML table.  The column width is set to 22%, the WebListBar's width is 100%, and the WebTrees on each of the WebListBar groups is set to an initial width of…

  • Set server-side "SelectedNode" object to null by javascript

    Hi guys,

    The behavior I want to implement is "Reset" the UltraWebTree on Client-side.It means collapse all nodes and clear selectedNode by javascript.

    My problem is my javascript method can't change the SelectedNode object to null on Server-s…

  • Can get the value of the seleceted UltraWebTree's node with javascript?

    I can get the name of the selected UltraWebTree's node  with javascript, for example:

        function NodeClick(treeId,nodeId)  
        {        
            var node = igtree_getNodeById(nodeId);
            if(node == null)
            return;
            var nodename=node.getText();         
        }

    so now,I want to get…

  • Things happening in a tree -after- a WARP RefreshComplete.

     Hello all, I have a WARP panel inside which is an UltraWebTree control.

    At a certain level of the treeview, when you select a node, it goes through the refresh process, and after RefreshComplete fires, the parent node is no longer selected... but after…