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
13
votes
2 answers

Custom buttons on Kendo tree view Angularjs

I'm trying to add multiple buttons inside Kendo treeview node. I have used template to add multiple buttons but failed to achieve their features as the whole node is working a link. Please find below the HTML and JS HTML
GoSmash
  • 1,096
  • 1
  • 11
  • 38
8
votes
2 answers

Lazy load in Kendo UI treeview with caching

I am using Kendo UI TreeView to load hierarchical data in my webpage. By default, I am loading data upto 3 levels (ie Root -> Root directs -> Root directs' directs). I need a way to lazily load the remaining nodes as user expands further down the…
prthrokz
  • 1,120
  • 8
  • 16
8
votes
2 answers

Render kendo control inside kendo template (Razor)

Is it possible to render a kendo control inside a Kendo Template? Something like this one? Thanks in advance!
Jude Duran
  • 2,195
  • 2
  • 25
  • 41
7
votes
3 answers

Read selected node's values from kendo tree view?

I have a kendo treeview having a node with {id, value}. and I want to get selected node's id and value when I click on a button. How can I get it? Is there any inbuilt functions there to get it? Here is my sample code: $("mytree").kendoTreeView({ …
jestges
  • 3,686
  • 24
  • 59
  • 95
7
votes
5 answers

Cancel the update in inline kendo grid delete the row

I am using two kendo inline grid parent and child. child grid contains the list of products,when user select the products(multiple selection) from child grid and clicked to save button,it's inserted into an parent grid. Child grid: var selectedIds =…
5
votes
1 answer

Uncaught TypeError: Cannot read property 'replace' of undefined with KendoTreeView`

Below is my KendoUI tree view, I am using templates to show edit link on each node, but I am getting this error: "Uncaught TypeError: Cannot read property 'replace' of undefined " @section scripts{
user3014311
  • 438
  • 8
  • 27
5
votes
2 answers

How to programatically expand a node of Kendo treeview

I have a Kendo treeview that is built as below codes (see below). Each tree node has a unique data id field (that is employee Id). I would like to have a text box ( ) and a button ( ) so user can…
Thomas.Benz
  • 8,381
  • 9
  • 38
  • 65
5
votes
2 answers

Kendo UI TreeView custom attributes

I have a Kendo tree that I am binding using local data Everything works fine with the code I have. However, I am trying to add custom attributes to the items generated, like data-name. How can I do this using kendo.data.HierarchicalDataSource? //…
Catalin
  • 11,503
  • 19
  • 74
  • 147
4
votes
2 answers

how to add Custom CSS for Kendo Tree View nodes?

i'm using kendo tree view with my own data source. from there i want to add custom css class for some nodes. Let's say I want to add a red background to some tree nodes, in a dynamically loaded Kendo UI TreeView. How can I do this? My expectation…
Janaka Sampath
  • 85
  • 1
  • 13
4
votes
1 answer

"The requested resource does not support HTTP method 'PUT' ASP.Net Web API

My jQuery Put request does not work, when I run my code in debug mode the put function does not get called, and from FireBug I can see this error: The requested resource does not support HTTP method 'PUT' Here is my jQuery code and API…
user3253540
  • 43
  • 1
  • 5
4
votes
1 answer

Add buttons to Bootstrap Treeview Node

I've a bootstrap treeview which has two levels. And I need to add different buttons to different nodes in the treeview. here is my structure var tree = [ { text: "Parent 1", nodes: [ { text: "Child 1", nodes: [ …
4
votes
1 answer

Use KendoUI tree view as input value

I am using Kendo UI TreeView along with Kendo UI MVC Wrappers in my ASP.NET MVC project. I have HTML form in my view. Here is the code of my view:
@* ... *@ @(Html.Kendo().TreeView() …
Nikolay Kostov
  • 16,433
  • 23
  • 85
  • 123
4
votes
5 answers

Kendo TreeView Search with Highlight

I have a KendoTreeview with spriteclass. I want to highlight the nodes (root as well as child nodes) with my search term. I have implemented the search functionality. But the issue when i search it is highlighting the term in the nodes but missing…
Indy Guy
  • 51
  • 1
  • 6
4
votes
3 answers

How to programmatically select the root node of Kendo UI treeview

I am a Kendo UI newbie. My Asp.net MVC application has a Kendo UI treeview which is set up like follows. Each tree node has a unique Id (e.g. EmployeeId which is integer). How can I programmatically select the root node (which has Id of 1) of Kendo…
Thomas.Benz
  • 8,381
  • 9
  • 38
  • 65
4
votes
1 answer

Kendo treeview expandPath method

Kendo has added a new API method called expandPath to its treeView in Q3 2013. Unfortunately I can't find any documentation about it in Kendo UI Docs or its forums. Has anybody used this method? A sample would be great.
nazemian
  • 159
  • 1
  • 11
1
2 3
34 35