Questions tagged [kendo-treeview]

Kendo UI TreeView widget displays hierarchical data in a traditional tree structure. It supports user interaction through mouse or touch events to perform re-ordering operations by using the drag-and-drop functionality.

The Kendo Treeview is a Javascript-based control that displays hierarchical data in a traditional tree structure. It supports user interaction through the mouse or touch to perform re-ordering operations via drag-and-drop.

References

Related tags

515 questions
0
votes
1 answer

Kendo UI Treeview sprite goes away after drag&drop

I'm trying to generate a Kendo UI treeview markup and make use of dragging and dropping nodes around. The problem is that after I drop a node onto another the sprite span element disappears. Initial HTML markup:
  • lucassp
    • 4,133
    • 3
    • 27
    • 36
  • 0
    votes
    2 answers

    How to get the parent id of the parent when we click on the child check box

    i am having an kendo treeview with checkbox template. my html code
    I have defined the treeview like: var treeview1 = $('#treeview-left').kendoTreeView({ …
    Jonathan
    • 1,659
    • 8
    • 34
    • 54
    0
    votes
    1 answer

    How to fill the grid based on treeview node(checkbox-selection)?

    I am doing a project using Kendo UI controls. In project left side "treeview" and right side "kendogrid" are placed. Here my requirement is to filter the grid based on treeview nodes, and need to do multi-selection. For example:eg:10249,10248 Based…
    user123
    • 820
    • 3
    • 14
    • 34
    0
    votes
    1 answer

    Kendo Treeview Remote Binding c# variable inside template

    I'm using MVC Razor view and Kendo Controls How do I keep a global variable that reside in my C# code block but at the same time, also available inside my Kendo Template so that I can incerement it for every items I fetch? What I need is this: Kendo…
    Jude Duran
    • 2,195
    • 2
    • 25
    • 41
    0
    votes
    1 answer

    Kendo TreeView: Can you edit a single dataitem without full tree update?

    I'm currently running with kendo v2012.3.1315 and I am trying to edit a specific node in a tree view without a full tree view update. I would like to be able to edit the name and have it reflect on the tree and any access to dataitem. Right now, I…
    Paul Sachs
    • 905
    • 2
    • 11
    • 22
    0
    votes
    0 answers

    Kendo Mobile Appended form elements from treeview not being noticed

    I am trying to figure out why appended form elements are not being notice by kendo mobile --- i have tried 10 different fixes but those items just dont get noticed: This is in the view:
  • DropHit
    • 1,695
    • 15
    • 28
  • 0
    votes
    2 answers

    kendo treeview head node from child

    I have a kendo treeview i use this function to bind event change change: function (e) { if (e.field == "checked") { gatherStates(e.items); alert(e.items); } } If i want to know the 'dad node'(the node…
    Ciccio
    • 468
    • 4
    • 17
    0
    votes
    1 answer

    Kendo treeview checkchildren ie

    I have a treeview $("#treeview").kendoTreeView({ dataSource: { data: dati.toJSON() }, checkboxes: { checkChildren: true }, selected: false }); But on ie when i check on the Root node the childreb don't…
    Ciccio
    • 468
    • 4
    • 17
    0
    votes
    1 answer

    kendo Treeview datasource binding

    I have main page: main.html In this page I have a viewmodel with a hierarchical datasource datasource: [{id:"", items:[{.....}]}]; In a modal window I have a Treeview. Treeview call a datasource in main page. In my datasource there is a variable…
    Ciccio
    • 468
    • 4
    • 17
    0
    votes
    1 answer

    Kendo HierarchicalDataSource

    I have created a kendo HierarchicalDataSource var fontidatasource = new kendo.data.HierarchicalDataSource({ data: vm.get("Source") }); I want search in it the item that are checked. I have tried to use a gatherStates function (kendo documentation),…
    Ciccio
    • 468
    • 4
    • 17
    0
    votes
    2 answers

    How to perform case-insensitive sort in Kendo Tree view?

    I am using the below code to sort the value of the tree, it seems like the sorting happens based on CASE. I am trying to figure out a way to perform case insensitive sorting, can someone please help me? if(sortValue == 'Ascending') { …
    Learner
    • 2,303
    • 9
    • 46
    • 81
    0
    votes
    2 answers

    Unable to set Table height during initial load

    I am using Kendo tabstrip and load tree view (inside a table). I am setting the height of the table that holds the tree based on window size, everything works fine when the window is resized but for some reason I am not able to set the height of the…
    Learner
    • 2,303
    • 9
    • 46
    • 81
    0
    votes
    1 answer

    Is there a way to union multiple nodes based on ID or Text when using Kendo tree view?

    I have 3 different object / node as below, and I am trying to form the finalObj / node which is the union (unique tree list) of the 3 nodes.. Is there a method in tree view with which I can union 3 objects (nodes) based on text or id ? First node:…
    Learner
    • 2,303
    • 9
    • 46
    • 81
    0
    votes
    1 answer

    Auto scroll Kendo TreeView when dragging elements up and down

    Wish if someone could give me a solution to make kendo grid auto scroll when dragging a TreeView element up or down.
    Shivanka
    • 723
    • 2
    • 8
    • 21
    0
    votes
    1 answer

    Kendo UI: TreeView - Is there anyway to catch an event for when a node is added?

    I am trying to catch an event on a treeview with ondemand loading. The event I want to capture is when I manually add a node. What happens right now is after adding a node, the treeview makes a request to the server for children of the parent i am…
    Paul Sachs
    • 905
    • 2
    • 11
    • 22