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

Wrap a JavaScript function reference

I have the following JavaScript code, which works as expected... /** @jsx React.DOM */ var TreeView = React.createClass({ render: function() { return
; }, componentDidMount: function() { …
Simon Woods
  • 2,223
  • 4
  • 27
  • 34
4
votes
2 answers

Binding checkboxes in treeview with checkboxes that uses remote datasource

Let me layout a situation here. I have a situation where I need to show several check boxes on a form that are hierarchical by nature in terms that some of them belong to one category and other belong to a second and so on. My first idea was to use…
Dragan B.
  • 411
  • 4
  • 9
4
votes
1 answer

Kendo UI, How to get widget object from DOM element when using MVVM?

I have made a kendo treeView in MVVM as instructed in this page: http://demos.kendoui.com/web/treeview/mvvm.html Now I need to bind some of the events and also make use of some APIs. I think I will need to have the treeview object and I need to…
Vahid
  • 257
  • 4
  • 14
4
votes
3 answers

Remove Hover Styling on Kendo Treeview

I am trying to remove the hover styling on the kendoui treeview component so that when you hover over an item in the treeview it does not have a border / background image etc. I have gotten rid of everything but the border as it looks like there are…
BlueBird
  • 1,406
  • 4
  • 24
  • 35
4
votes
1 answer

How to apply the styles for Kendo treeview parent node only

I have kendo tree-view in my application,I want to apply the styles for kendo tree-view parent node only.How to apply the styles like Font weight-bold for the parent node of tree-view? My treeview code is var tree= $("#treeview").kendoTreeView({ …
deeksha
  • 81
  • 2
  • 8
4
votes
4 answers

Unable to deselect the selected node in KendoUI tree view

I have a tree-like structure using Kendo UI tree view. Each node is displayed as a hyperlink and on clicking each one, a new kendotabstrip will be opened. My problem is if I select one node, the results are displayed fine in a new tab but if I close…
mick_000
  • 69
  • 3
  • 9
3
votes
0 answers

Getting extra information on Kendo UI Treeview node select event

What I want To populate a div based on the Kendo Treeview node click, based on some extra information which is based from the server-side. What I am doing Using PHP to send arrays as data to kendo treeview control, here is the code:
3
votes
0 answers

ASP.NET MVC Kendo TreeView with signalR

Anybody know how to work with Kendo TreeView and SignalR? Because I have this: @(Html.Kendo().TreeView().Name("vehicleList") .DataTextField("Name") .DataSource(ds => ds.SignalR() .AutoSync(true) .Transport(tr =>…
Std_Net
  • 1,076
  • 3
  • 12
  • 25
3
votes
0 answers

kendo tree view move programmatically item to another node

I use kendo tree view with angular. I try to move items between nodes programmatically, actually to change the item's parent, without drag and drop, but with the same result.
Peshi Bloy
  • 66
  • 5
3
votes
1 answer

Kendo: How do I create a recursive hieiarchy in the TreeView?

I am using Kendo UI and trying to figure out how to get the TreeView to display a recursive hierarchy. Firstly, here is my model (I am retrieving a list of these objects by OData): public class PageTreeItem { public Guid Id { get; set;…
Matt
  • 6,787
  • 11
  • 65
  • 112
3
votes
2 answers

Accessing the Child Nodes of a Selected Kendo TreeView Node

I have an Ajax populated treeview.... @(Html.Kendo().TreeView() .Name("fao") .HtmlAttributes(new {@class="fixed-height" }) .DataTextField("Text") .TemplateId("treeview-item-template") .DataSource(ds => ds .Read(r => r …
Stuart Hemming
  • 1,553
  • 2
  • 21
  • 44
3
votes
2 answers

Angular-Kendo UI treeview, issue on node expansion

I'm facing this alleged Kendo UI treeview bug in the Angular version. It's specific to the k-template option. The bug shows up on their online demo - http://demos.telerik.com/kendo-ui/treeview/angular Just expand Item 2, and suddenly the text…
bob.mazzo
  • 5,183
  • 23
  • 80
  • 149
3
votes
1 answer

Custom styling Kendo Treeview node text in trees loaded from JavaScript

Let's say I want to add a red background to all tree nodes matching a certain text, in a dynamically loaded Kendo UI TreeView. How can I do this? It's easy to customize node styles when instantiating trees from HTML, but for trees loaded from a…
Dan Dascalescu
  • 143,271
  • 52
  • 317
  • 404
3
votes
1 answer

Cannot get value of HtmlAttributes item in kendo MVC treeview

I am using the Kendo MVC wrapper extensions to create a TreeView from my models. I would like to pass some data from the model with HtmlAttributes to the view. Here is my Action : public ActionResult Index() { var nodeList = new…
3
votes
0 answers

How to get the ID property in KendoUI TreeView

Here is my tree view of KendoUI: