Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7503381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:12:06+00:00 2026-05-29T21:12:06+00:00

I have a TreeView with some nodes inside of it. Whenever the user clicks

  • 0

I have a TreeView with some nodes inside of it. Whenever the user clicks on a node, some code runs:

function LoadFloorPlan(componentID) {
    var floorPlanImage = new Image();

    //Will only fire if component has a floorPlan, else no image returned.
    $(floorPlanImage).load(function () {
        //Resize the stage now that that we know the image's dimensions.
        //Don't use img's width because a small stage may truncate the messageLayer.
        planViewStage.setSize($('#tabs-6').width(), floorPlanImage.height);

        PaintFloorPlan(floorPlanImage);
        GetDiagrams(componentID);
    });

    $.ajax({
        url: '../PlanView/RenderFloorPlanImage',
        data: { ComponentID: componentID },
        datatype: 'json',
        success: function (imageSource) {
            //TODO: This isn't correct for all browsers.
            if (imageSource !== "") {
                //TODO: When the component's node stores information about itself, check it for a 'HasFloorPlan' attribute.
                floorPlanImage.src = '../PlanView/RenderFloorPlanImage?ComponentID=' + componentID;
            }
            else {
                WriteMessage("The selected component has no associated floor plan.");
            }
        }
    });
}

I am experiencing timing issues with the above code. If the user selects a new node in the TreeView after the ajax request has fired off I display incorrect data momentarily. This issue is exacerbated if the newly clicked node does not overwrite the old nodes image.

I don’t really want to wipe the canvas in multiple places to handle this scenario. Instead, I would like to kill my ajax request such that the load event never fires.

Does this sound like a reasonable approach to my problem? Advice? I am still learning how to interact with asynchronous events properly.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:12:14+00:00Added an answer on May 29, 2026 at 9:12 pm

    I am considering this as a solution. It works well for my purposes and I don’t see any dangerous edge cases.

    var requestCount = 0;
    function LoadFloorPlan(componentID) {
        requestCount++;
        var floorPlanImage = new Image();
    
        //Will only fire if component has a floorPlan, else no image returned.
        $(floorPlanImage).load(function () {
            requestCount--;
            if (requestCount == 0) {
                //Resize the stage now that that we know the image's dimensions.
                //Don't use img's width because a small stage may truncate the messageLayer.
                planViewStage.setSize($('#tabs-6').width(), floorPlanImage.height);
    
                PaintFloorPlan(floorPlanImage);
                GetDiagrams(componentID);
            }
        });
    
        $.ajax({
            url: '../PlanView/RenderFloorPlanImage',
            data: { ComponentID: componentID },
            datatype: 'json',
            success: function (imageSource) {
                //TODO: This isn't correct for all browsers.
                if (imageSource !== "") {
                    //TODO: When the component's node stores information about itself, check it for a 'HasFloorPlan' attribute.
                    floorPlanImage.src = '../PlanView/RenderFloorPlanImage?ComponentID=' + componentID;
                }
                else {
                    WriteMessage("The selected component has no associated floor plan.");
                    requestCount--;
                }
            },
            error: function () {
                WriteMessage("There was an error rendering the floor plan.");
                requestCount--;
            }
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a treeView with many nodes. I want that some nodes change their
I have a treeView , and i want to know if some node can
In some VB6 code, I have a handler for a TreeView's Collapse event: Private
I have a Masterpage that has Treeview. You can select some nodes there. Based
I have a TreeView which will be populated with some Nodes. The problem is,
I want to run some code on all my treeView nodes depending on a
I have a treeview with some nodes along with some subnodes.In those subnodes, I
I have a problem with treeview nodes. When I click on some nodes, it
I'm working with application, which use TreeView. I want some nodes have checkBoxes, but
I will have some sort of nodes for a treeview as follows Root |->

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.