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
635
Progrss indicator in UltraWebTree
posted
Hi, I am using ultrawebtree control in my page of infragistics version 8.2.I am loading nodes from database on page load. On treenode expand i am again populating child treenodes from database.I want to show loading image icon on following cases 1) node expand 2) When first time tree is loading. I have tried it using updateprogress but its not showing waiting icon or text .How to achieve it. my aspx page contains following code. Sys.Application.add_load(placeUP); --%> --%> --%>
Processing
Parents
  • 10685
    Offline posted

    Hello Prajakta, 

    Thank you for posting in the community.
    It seems your code attachment is missing.

    Please notice the product version you are using is no longer shipped and supported as it is considered retired.

    Reference to the product LifeCycle page: https://ko.infragistics.com/support/product-lifecycle

    I strongly suggest you to upgrade to more modern product version and take advantage of the up-to-date architecture and support in modern browsers.

    Here is an online sample illustrating the use of Ajax Indicator for our Aikido Controls https://ko.infragistics.com/samples/aspnet/data-tree/ajax-indicator

    Regarding your particular asking here is an example of implementation of such loading indication "How to a Progress Indicator During DemandLoad Of The UltraWebTree":

    Declare InitializeTree and DemandLoad event handlers in the ClientSideEvents of the UltraWebTree.

    <ClientSideEvents InitializeTree="func_initializeTree" DemandLoad="func_demandLoad" />

    The DemandLoad event handler will respond when the user click on a node and process an ajax postback to retrieve thechild nodes. In this handler you can display any progress indicator message.

    The InitializeTree event handler will act like the callback, this is assumed because the UltraWebTree does not have any AfterDemandLoad event. In this handler you can hide the progress indicator message. 

    var _currentNodeId = '';
    var _currentNodeText = '';
     
    function func_initializeTree(treeId)
    {
        var tree;
        tree = igtree_getTreeById(treeId);
        if(_currentNodeId.length > 0 && _currentNodeText.length > 0)
        {
            var node = igtree_getNodeById(_currentNodeId);
            node.setText(_currentNodeText);
        }
        _currentNodeId = '';
        _currentNodeText = '';
    } 
    function func_demandLoad(treeId, nodeId)
    {
        var tree = igtree_getTreeById(treeId);
        var node = igtree_getNodeById(nodeId);
        _currentNodeId = nodeId;
        _currentNodeText = node.getText();
        node.setText(_currentNodeText + ' [Loading...]');
    }
     

Reply Children
No Data