0
votes
2answers
27 views
Sort flat list, group by parents
I have a flat list of pages in a mySQL Table.
ID | Tab index | Page Name | parent
Pages can be children of another page, specified by the "parent" property.
The whole list i …
0
votes
1answer
15 views
Change context menu in WPF TreeView for data
Is there a way to specify in a TreeView's HierarchicalDataTemplate to use a different context menu depending on a property on the data an item is bound to? For instance, display on …
0
votes
2answers
16 views
Update property on view model without code behind?
I'm using a TreeView inside a Combobox control (from here). I have a ViewModel object that is the DataContext of my window.
What I would like to have happen is when the selected i …
1
vote
1answer
30 views
C# winforms TreeNode mouse hover tooltip problem
I am trying to show a tooltip when mouse hovers on a treeview node. But the tooltip is not showing up.
This is my code:
private void treeView1_MouseHover(object sender, EventArgs …
0
votes
2answers
33 views
ASP.NET MVC with tree - pattern
Hello,
I am preparing a skeleton of ASP.NET MVC application with basic CRUD functions on Products and Parts included in these products. Application contains couple of strongly-type …
0
votes
0answers
84 views
TTreeview Icon Weirdness
I'm setting image indexes like this:
with TN do
begin
ImageIndex := 1;
SelectedIndex := 1;
end;
Problem:
I use the same code for three icons in various places through my main u …
0
votes
1answer
27 views
WPF: TreeView and nested templates
I'm trying to display a class using a treeview but nothing is displayed. I've inspected the container with Snoop and I see the StackPanel, but it's empty, even the the project does …
1
vote
2answers
61 views
Lightweight jQuery tree controller?
I need a simple jQuery folder tree controller with the following features:
to be based on a nested unordered list
expand/collapse
drag and drop to reorder
ajax support (not sure …
0
votes
1answer
36 views
Silverlight: How to change TreeViewItem text color when it selected
I have TextBlock inside HierarchicalDataTemplate. I need to set foreground color to Red when TreeViewItem selected.
<controls:TreeView Background="#FF939597"
ScrollViewe …
0
votes
2answers
27 views
Why does the hover style not work on the leaf nodes of jQuery Treeview?
If you look at Sample 1 on this page, you will see that, when you hover over the folder entries, the text turns red, but not if you hover over the leaf entries. I would like the s …
0
votes
1answer
39 views
How to load TreeView Serialization into GridView
From a TreeView, I get this XML serialized:
<?xml version="1.0" encoding="utf-16"?><node text="<span id='c6f5ab9e-d08f-448a-9143-02d174317c07' oncontextmenu=&q …
0
votes
1answer
39 views
LINQ to SQL as databinding source for WPF Treeview
I wonder if someone could provide a simple example of the following. (preferably in VB.Net):
I have an SQL database with related tables and I am successfully using LINQ to SQL in …
0
votes
1answer
50 views
‘Collapse all’ problem with jQuery Treeview plugin
And the problem is that after I click on the 'Collapse all' link, 'some' of the pluses and minuses are displayed opposite to what they should be: i.e. an 'expandable' node would be …
1
vote
3answers
37 views
Whilst using drag and drop, can I cause a Treeview to Expand the node over which the user hovers?
In brief:
Is there any built-in function in .Net 2.0 to Expand TreeNodes when hovered over whilst a Drag and drop operation is in progress?
I'm using C# in Visual Studio 2005. …
0
votes
1answer
41 views
WPF DataBound treeview expand / collapse
Hello, I'm just trying to find a way to control the expand / collapse of the treeview nodes through the object they're bound to. The object has an IsExpanded property, and I want t …
