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 9180515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:04:31+00:00 2026-06-17T18:04:31+00:00

Kendo UI V. 2012.2.924 So I’m trying to do something pretty messed up with

  • 0

Kendo UI V. 2012.2.924

So I’m trying to do something pretty messed up with my kendo tree view. The situation is this: I have a kendo tree view with on demand loading. I also implemented special placeholder nodes that can be clicked to append additional nodes to each level (as a way of batching).

The feature I need to implement is a search. The user can enter a node name and the tree will expand to that node and select it. I have all the logic on the server figured out. The only problem is that with ondemand loading, every time I append a node to a parent, there is a server call to get the contents of that parent. I want to disable this automatic call until my manual appends have been completed. Anyone know if this can be done? I have tried from the server, but if I just return null it has an error. If I return an empty list, it wipes out the existing appended nodes.

Any help would be appreciated.

  • 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-06-17T18:04:32+00:00Added an answer on June 17, 2026 at 6:04 pm

    From the description seems that you are actually willing to disable the load (not just the loadOnDemand).

    You can control it in the transport.read implementing functions that check the control variable (the variable saying if loadOnDemand is enabled or disabled).

    Example 1: If you have something like:

    transport: {
        read: {
            url: "data.jsp"
        },
    },
    

    You should transform it into:

    transport: {
        read: {
            url: function () {
                if (!disableRead) {
                    return "data.jsp"
                }
            }
        },
    },
    

    Example 2: If you have something like:

    transport: {
        read: function (options) {
            ...
            options.success(data);
        }
    },
    

    You should transform it into:

    transport: {
        read: function (options) {
            if (!disabledRead) {
                ...
                options.success(data);
            } else {
                options.success([]);
            }
        }
    },
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have this view <!DOCTYPE html> <html> <head > <link href=<%: Url.Content(~/Content/kendo/2012.3.1114/kendo.common.min.css)%> rel=stylesheet
Using Kendo UI in MVC 4 . I have a dropdown defined as this
I have a kendo grid in my view named Grid and I have a
I am using RPNiemeyer kendo-knockout library. I have three view models that instantiate each
I'm building a Kendo Chart in a razor view and have .Tooltip(tooltip => tooltip.Visible(true))
I have a Kendo Grid using Server binding and defined in a Razor view
i'm using the kendo ui grid on my backbone application. i used this codes.
I have 2 questions on kendo combobox change event. On change event I want
I'm using editor from Kendo UI, so I have big problem. I don't know
I have created a mobile application using kendo Mobile UI's trial version in asp.net

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.