Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
785
Reg: Need help on Infragistics WebDataTree Node Properties & methods
posted

HI,

 Previous we used UltraWebTree for that we used below properties & functions in our project. Now we are Migrating UltrsWebTree to WebDataTree. Please let me know Alternate of below properties & Functions supporting to WebDataTree

we used for UltraWebTree properties & functions like igtree_getNodeById, node.getDataKey, igtree_getTreeById

function UltraWebTreeResourceFolders_AfterNodeSelectionChange()
    {                                                          
        var selectedNode = tree.getSelectedNode();
        var folderKey = selectedNode.getDataKey();
                  
             // Logic


            selectedNode.scrollIntoView(false);             
        }
    }

 var childkey = childNode.getDataKey();
 if(dataKey == childkey)
   {                    
         if(!childNode.getExpanded())
       {
           childNode.setExpanded(true);
         }                    
         childNode.set_Selected(true);                                            
           childNode.scrollIntoView(false);
           return;
      }

Thanks in advance

Thanks & Regards

Ram