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
3
votes
1 answer

Kendo Tree Icons

How to have two trees on the same page with diff icons: .k-treeview .k-minus { background: url('../images/k-minus.png') center center; } .k-treeview .k-plus { background: url('../images/k-plus.png') center center; } Any help would be great.
uiuxhub
  • 1,209
  • 2
  • 14
  • 24
3
votes
1 answer

kendo ui treeview with json speed issue

i have done kendo ui tree with external json file this is working fine if i have nodes arround 200 but it is taking to much time if i have large amount of data check this http://infinitelyinfinite.com/treeview/ here is my jQuery…
M.I.T.
  • 1,040
  • 2
  • 17
  • 34
3
votes
2 answers

How to render a treeview using Angular and Kendo UI

I am having great difficulty trying to render a treeview with angular and kendo. Here is the code I have so far: Website1.controller("FieldsController1", function ($scope) { $scope.things = { data: [ { …
Luke101
  • 63,072
  • 85
  • 231
  • 359
3
votes
1 answer

Kendo UI TreeView selectable root

Is there a hack in kendo ui treeview so when the user click the root node it will trigger select method, as with the other branch node. Currently there is no options that I can find for this behaviour, and the select method only triggered for the…
strike_noir
  • 4,080
  • 11
  • 57
  • 100
3
votes
4 answers

how do I collpase and expand all tree nodes in a Kendo UI treeView based on a button click?

This is not working:
JJ.
  • 9,580
  • 37
  • 116
  • 189
3
votes
3 answers

Hide the Root Checkbox in a Kendo TreeView

I know you can use checkbox template to control its look-and-feel but how would I hide the checkbox for the root node (and only the root node)? UPDATE The answer below does the trick as well. However, I ended up using a template like…
notlkk
  • 1,231
  • 2
  • 23
  • 40
3
votes
1 answer

Open Kendo UI TreeView node using id

I am using the Kendo UI TreeView to generate my tree. Here is the tree documentation. It works fine, but now I want to expand(open) a node using id. I found some code here, but it isn't working with my code: var serviceRoot =…
M.I.T.
  • 1,040
  • 2
  • 17
  • 34
3
votes
1 answer

Kendo UI TreeView right click

I have some kendo treeView with remote data. Also I have context menu that activates on right click, Is it possible to select node manualy ? I mean that this node must be highlighted like it is left mouse click. Maybe it is bossible to trigger some…
3
votes
2 answers

Kendo Chart Value axis will be changed on click event

I have kendo chart with multi value axis and kendo tree-view. I want to show the value axis-es according to the checkbox selection. For example we will check the "KM" checkbox, then the chart will display KM value axis. Is it possible? Here is my…
user2138545
  • 508
  • 1
  • 5
  • 18
3
votes
1 answer

In grid filter-field name will be changed into italic font

I have kendo grid and tree-view with check-boxes.In my application grid is filtered based on the check-box selection.My requirement is when we check the check-box in tree-view,then filtering the grid,after filtering grid filtered columns headers…
user2049357
  • 321
  • 2
  • 4
  • 15
3
votes
2 answers

Pass additional parameter during Expand event for Kendo Treeview

I've got a Kendo Gridview on the same page as a Treeview. The Gridview contains rows of clients associated with the current user. When one of the client rows in the Gridview is selected, I trigger the Treeview to Read the DataSource again…
Josh
  • 1,876
  • 3
  • 21
  • 35
3
votes
1 answer

Telerik Kendo Drag and Drop from grid to treeview - getting destination value

I have a kendo grid in my view named "Grid" and I have a treeview named "treeview". I'm attempting to enable dragging from the Grid to the treeview. I'm able to get the value of the item I'm dragging but I'm unable to get the value of where I'm…
Mithrilhall
  • 1,485
  • 8
  • 33
  • 52
2
votes
2 answers

kendo ui Listbox remove item

Hey all I need some help with getting a selected item and removing it from the kendoListBox. I currently have successfully been able to add the checked item(s) into the kendoListBox when checking an item in the kendoTreeView but I am unable to find…
StealthRT
  • 10,108
  • 40
  • 183
  • 342
2
votes
1 answer

Telerik Net Core Treeview Template-Get value from inputbox of selected item

How could I get the value from an inputbox of a selected checkboxitem(and subitems)? I can get the label of a checkedItem(item.Name), but I don't now how to get the value of an inputbox.