TreeView control is used to display hierarchical information.
0
votes
0answers
9 views
FilteredTree refresh for big Trees
Is there a Solution to get the SearchField in the Eclipse FilteredTree more responsible ?
I thought of the possibility tho have seperate Jobs for the Filter and the FilteredTree so you can Type as ...
2
votes
0answers
17 views
“Link” items in a WPF TreeView
I have a WPF TreeView that represents an object graph in which some objects implicitely references each others.
For those, I'd like to be able to draw an arrow linking them when I select one of ...
0
votes
0answers
20 views
How I can fill the TreeView with a XML Node to node in ASP.NET?
i write a asp.net application and i use a xml string. I use xmlreader with the method create for this string. Then I want to fill the treeView with this xml string. In my Windows Form application it ...
0
votes
0answers
26 views
How I get all nodes in my ASP.NET Application for the TreeView?
i try in my windows form application to use a treeView with a xml string that i get from the xmlreader and filter them to his nodes. It works and my Problem is I want do this now in a asp.net ...
0
votes
0answers
5 views
Treeview issue selecting and displaying
I'm trying my hand at the treeview controll. What I'm trying to do is take a prepopulated treeview and when I click a node, a corresponding panel becomes visible. when I select another node, that ...
0
votes
1answer
16 views
How I can set a ImageIndex in my TreeView by a if statement?
hi how i can set a image for my treeView nodes... I have a parent and a child node.
here is my code:
private void btnShowLicstate_Click(object sender, EventArgs e)
{
...
1
vote
1answer
14 views
WPF TreeView, Binding not working
I have TreeView that I am binding to List of My Data Class. Actually, I am using JSON data and create List from it. Also, I define a DataTemplate in TreeView to hold an Image and TextBlock in ...
0
votes
2answers
25 views
How I can control a XML with XMLReader to fill a TreeView with Subtree Nodes?
hi i have problems with xml and the treeview control in C# Windows Forms.
My Application:
First I create a string out of a cmd command. This is a output in xml format. the final_output is my ...
-2
votes
2answers
34 views
How I can fill a treeView with a List<string>? [closed]
hi i have a question to treeview.
I have a List liste and the treeview with the name treeLic. Now I want to fill this treeview with this list. Can I do this and how?
XmlReader xr = ...
0
votes
0answers
25 views
Microsoft JScript runtime error: Object doesn't support property or method 'getElementsByTagName' in IE9
I've a page with a TreeView control and the parent node is checked, the child nodes will be checked as well. It was done using javascript. But when the page is opened is IE9 and trying to check the ...
0
votes
1answer
14 views
Treeview - Event on Node Click but not Expansion in Visual Basic (VS 2012 V11)
I'm trying to make a help file in Visual Basic. I've decided to go the route of replicating the old style help files with a TreeView panel, to the left, and a RichTextbox , on the right, of the form. ...
0
votes
2answers
35 views
WPF Treeview with multiple levels using HierarchialdataTemplate
Here is my code for creating a Treeview that has multiple levels with checkbox to be shown.
I am not able to show the Files under the folders with the following code. What is wrong with my Xaml that ...
0
votes
1answer
20 views
How I get the Parametervalue of a xml for the treeview`?
hi i have a xml and i want it show in my treeview in C#
it works but the treeview don't show me the what i want see.
i try to explain my problem:
here is the xml:
<?xml version="1.0" ...
0
votes
1answer
34 views
Get the Parent List in a TreeView
my Problem is the following:
i have a treeView, which is bounded to the ItemsSource. The SelectedItem is bound
to a property in my ViewModel called SelectedItem.
The ItemsSource is build like:
...
0
votes
0answers
20 views
When PropertyChanged called event PropertyChanged=null
I have a class derived from INotifyPropertyChanged to track property changes. This properties are bound to a TreeView and are needed to perform searching in TreeViewItems. When in properties setters ...
0
votes
2answers
27 views
how i can use a string that have the same structure how a xml file for a treeview?
hi how i can use a string that have the same structure how a xml file for a treeview.
For Example here is a part of the string coontent..
<?xml version="1.0" encoding="UTF-8"?>
<LM-X ...
0
votes
1answer
59 views
Binding recursive treeView
I'm developping a Windows Form application on Visual Sudio and this is the my first time with treeView. My project has a ADO .NET entity data model of and SQL database, I have 3 tables with relations:
...
0
votes
1answer
15 views
Deselected node keeps being selected
I have created a custom handler for my TreeView control:
public class TreeViewOnlyLeavesSelectable : TreeView
{
protected override void OnNodeMouseClick(TreeNodeMouseClickEventArgs e)
{
...
0
votes
0answers
26 views
jquery filter tree made with nested ul li
By following an article I can search nested ul li list. Nothing worng with it. JSFIDDLE HERE
I am trying to implement this code in nested ul li tree list.For that I am using jquery.treeview plugin. ...
0
votes
0answers
22 views
Binding SilverLight Treeview From ViewModel Using Entity Framework
I've got a database structure similar to this:
Project
ProjectID(pk)
ProjectName
ProjectFile
ProjectId
FileId(pk)
Notes
I have to bind a silverlight treeview the Parent should be the ...
0
votes
0answers
12 views
Checkbox control click to create treevew
I have different tabs and under different tabs i have several checkboxes...
For Example ..high level tab name is City
next in that tab page i have another tab control and tabges are like Area and ...
-1
votes
2answers
14 views
How can I make the expand/collapse triangles bigger?
Kendo UI treeview triangles are too tiny for my users.
I want to make them bigger.
0
votes
1answer
18 views
wpf treeview get selected value
I have a TreeView and a ListBox. Both of them get populated from different DataTables.
The Treeview gets its data from:
DataTable product_type = new DataTable();
product_type.Columns.Add(new ...
0
votes
2answers
35 views
How to return a multidimensional array keys as a tree?
I am working on an MLM application in which i need to show all users as a tree. For this is implemented parent child relationship among the users. my table structure is here :-
I had retrieve the ...
1
vote
2answers
89 views
How can I insert a treeview in a child window in Tkinter
Dear All I have been trying to insert a treeview in a child window using Tkinter but it has been quite complicated since I don't know how to put them together. Thank you very much in advance!
Héctor
...
0
votes
1answer
25 views
Animated TreeView and nested Accordions
I want to achive a Navigation for my application that looks like a TreeView but is animated like a TitledPane. That is, a Transition when expanding/collapsing an item for its content.
What I did so ...
0
votes
0answers
48 views
Directory.EnumerateFiles and WPF treeview in MVVM
I am trying to develop a databound wpf treeview of a (large) list of files.
To keep it simple I made a directory and a file class
Directory class:
public class MyDirectory
{
public string ...
0
votes
0answers
41 views
Loading OPML(XML) file into TreeView
I'm new with c# and I'm trying to load the content of a OPML file into a treeView after a button click. I readed several tutorials about System.Windows.Form.TreeView and System.Xml, did many ...
0
votes
2answers
29 views
windows explorer context menu strip
I have a c# application winForm.
The form contain a tree view that show the file windows file system.
I want to add an option for right click on file that open a windows context menu strip.
There is a ...
0
votes
1answer
33 views
TreeNode Remove() not working
Long story short:
I traverse a generic tree and collect some nodes to a list according to a filter
after a complete traversal I start removing each node one by one
remove collected nodes
foreach ...
1
vote
1answer
32 views
WPF TreeView item clicked
I am a problem with the event in WPF. Say I have a underlying data model and a tree view to present the data. The simplest thing I want to do is, when I click on one item, I would do something with ...
0
votes
0answers
21 views
is it possible to make a custom treeview in asp.net
I want to make a TreeView like that in ERPNext in ASP.Net webforms.
Note that when a user clicks on any link edit,add,delete and rename appears in front of it.
I could not add button like that and ...
0
votes
1answer
42 views
Self-referensed entity to wpf treeview using Binding Converter and ObservableCollection
I have entity , build by default from the database table which references to itself
I'm new here and low reputation not alows me to add images, so I'll write all I can.
Area : EntityObject
...
0
votes
1answer
29 views
WPF TreeView data binding
I am very new to WPF, although I have already heard some concepts of it, like Model-View-ViewModel. I want to start learning WPF by doing a small program.
In the program I have a TreeView to display ...
0
votes
0answers
19 views
Edit Header Node TreeView
I have a problem with changing the header node of a treeview because I have no idea how to do ...
In particular I have this class:
class Categoria : TreeViewItem
{
public int ID { get; ...
0
votes
3answers
29 views
Main form is always stealing focus, when child form is created out of treeView
I've the following problem:
My program (Winforms) has a main window with a treeView control.
When the user selects a node in the treeView a new child window shall be created.
This works just fine.
...
0
votes
1answer
28 views
Modify an UpdatePanel by calling server-side code from client code
It's possible that there's no way to do this, but I figure I would ask. I'm relatively new to asp.net, having played with it for about a week now. What I have right now is a page that calls a web ...
1
vote
0answers
17 views
Applying a HierarchicalDataTemplate to a Grouping
I'm binding a TreeView to an ILookup<Foo, Bar>.
This means each item in the first level is an IGrouping<Foo, Bar>, and each item in the second level is a Bar.
How can I create a ...
0
votes
0answers
35 views
Treeview item selection WPF
I have created a tree using WPF where at Treeview level i am handling an even selectedItemChanged. However My headers are getting selected by this event but items are throwing an error
<TreeView ...
0
votes
1answer
46 views
How can I bind dynamic xml file to asp tree view?
I am trying to bind information from a web service to a tree view in my asp.net website. Using a drop down list, I choose a stock symbol that retrieves that company's information from the web service. ...
0
votes
1answer
60 views
How do I call a web service to get xml data displayed in a treeview in asp.net
I am trying to use a asp:dropdownlist control to be able to choose values from a local database I have created within my app_data folder. They are stock exchange symbols. When I select a symbol from ...
1
vote
0answers
61 views
Populating a treeview from a list
At the moment I have a hardcoded treeview in a winform set up with the following code:
private void Form1_Load_1(object sender, EventArgs e)
{
TreeNode _leftCameraNode = new ...
0
votes
1answer
22 views
ASP.NET TreeView control trouble with allocation
I need some help from you:
I develop some ASP.NET Web Form Application(.NET 4.5). There I have in my aspx file a treeview control declared.
<asp:TreeView ID="treeview" runat="server" ...
1
vote
1answer
78 views
VB.NET TreeView - dynamically selecting a node after it has been inserted or moved?
I'm working on a VB.NET 2010 project which features a treeview control. The first thing I'm trying to figure out is how to insert a new node right after the currently selected node, and then make that ...
0
votes
1answer
39 views
CodeProject: Get downloaded Code working [closed]
I am currently trying to use this code from CodeProject SharePoint Document Library so I can use it for Office365, but when i download the source code and try to open it with Visual Studio 2012 tells ...
0
votes
1answer
40 views
SharePoint Library Tree View for Outlok Addin
I am currently developing an Outlook Addin, this is my first time doing something Object oriented,
I'm a beginner, but since you all must have been there at somepoint i think you can all be ...
0
votes
1answer
22 views
Insert Existing TreeNodeCollection in TreeNode
Problem:
In the screenshot below, I have a node 300-9885-00X along with its TreeNodeCollection (in the red square). A little bit lower, we find the 300-9885-00X again, I want to insert the ...
0
votes
1answer
53 views
WPF TreeView Drag and Drop - Drop event always fires when clicking element
I'm trying to put together a drag & drop solution in WPF TreeView control, using these techniques:
Dragging and dropping to a TreeView, finding the index where to insert the dropped item
When the ...
7
votes
2answers
174 views
Add a border around all children of a TreeViewItem
I have a TreeView and I am trying to implement a style that will allow me to place a border around all the children of a particular node using the HierarchicalDataTemplate. An example of what I want ...
-2
votes
0answers
18 views
Wpf TreeView with a single object?
I have a List of Slides, which contains a List of Charts. This works fine and gets displayed as desired:
-Slide a
- Item A
- Item B
-Slide b
-Item A
etc.
But how can I add an "Details" ...


