Hi, Im having a problem, I have a treeview and I want to load the selected node url in the iframe but have no idea how to do this. I know I cant use response.redirect and I cant use navigateurl because that cancels selectednodechange. Any ideas anyone???
...
I am just starting in the SL world and am trying to use the Caliburn NavigationShell as my starting point. I converted the solution to SL4 and use Caliburn from the trunk .
To create the basic navigation, I am a bit unsure (well, quite), how I can display the original StackPanel of Buttons as a collapsible Treeview.
I changed ITaskBarI...
I'm trying to implement drag/drop in my TreeView and have it all working except once the scroll bar appears inside the TreeView. When the user attempts to scroll the bar by dragging it up or down PreviewMouseMove naturally gets fired. However, I cannot figure out a way to recognize that the mouse is over the scrollbar and not initiate ...
I'm trying to create a treeview in which I would have a list of items (containing info about emails) grouped according to the email subject. I want something similar to the bottom image
I first tried using ListView. I got some helpful suggestions how to do it on this forum, but none worked completely. Using GroupDescriptions I was abl...
I currently have an application which uses a regular ListView with groups to show a bunch of modules.
I would like to use a Category view. Category view is the new view introduced in Windows Vista for the Control Panel:
Is there a third party control or a way (via API) to create a ListView which mimics the behavior of the Windows 7 C...
I having an issue with the ASP.NET Treeview control. I create the treeview just fine but the nodes will not expand or collapse. I see there is a javascript error but it is for line 1 character 0 of the webpage, there is nothing at line 1 character 0.
I am using the ASP:Treeview control in conjunction with the Telerik controls, but I'm n...
HI all
My virtual box snapshot view is like this
Name: Snapshot 2 (UUID: cb45aef4-54d4-4c4e-ad3e-dd7cccb6103a)
Name: s131 (UUID: 8ec30c82-7796-4e51-8161-979f1b95fb0f)
Name: s131 (UUID: 42066f33-969b-41f3-a779-7f6e2c45ea2c)
Name: s131 (UUID: d71b9bc5-b862-46b5-ae4d-f88d3dd9756d)
Name: s131 (UU...
Is it possible to scaffold a table in CakePHP 1.3 that has the awesome tree behavior? It seems not to be supported out of the box, I'm looking for a very simple CRUD admin interface.
...
I've got some code in a class that extends gtk.TreeView, and this is the init method. I want to create a tree view that has 3 columns. A toggle button, a label, and a drop down box that the user can type stuff into. The code below works, except that the toggle button doesn't react to mouse clicks and the label and the ComboEntry aren't d...
I have a TreeView on my form but I'd like it to always be fully expanded, even the child nodes.
Is there a way?
...
I have a simple object as such:
public class Info
{
public string Name {get; set;}
public int Count {get; set;}
public DateTime TimeStamp {get; set;}
}
I want to bind a collection of these objects to a WPF TreeView and have the properties on the Info objects show up as sub TreeViewItems, like so:
Item 1
Name: Bill
Count...
In my ASP.NET MVC app I'm using jQuery Treeview with Async node expansion to build a tree of Active Directory objects. I'm encoding id's of each node with Base64 due to request length issue. For example in response for http://devel.local:49210/Domain/LeafExpand?root=source I get the following:
[{"text":"DC=anusiewicz,DC=pl","id":"REM9YW...
We're using an asp:TreeView configured with lazy loading. The callback method assigned for OnTreeNodePopulate throws an exception if the user has been logged out since the page was loaded. What we want to do is to direct the user to the login page.
First attempt was to catch the exception on the server and try Response.Redirect(...), ...
I am using VB Express 2008 to demonstrate my ideas for an improved UI for an existing product for my colleagues at work.
The current UI has a certain page with ten tabs, allowing the user to define up to ten "things". The available choices for each of the ten "things" are all the same. On each of the ten tabs, there is a checkbox to ena...
I have a simple gtk.TreeView with a gtk.ListStore model and set_reorderable(True), I want to catch the signal/event emited when the user reorder through drag&drop the list, but the documentation does not help much:
"The application can listen to these changes by connecting to the model's signals"
So I tried to connect the model (ListS...
Hi,
I have TreeView with hierarchical data binding. I want to get TreeViewItem.Header controls not my MVVM. I can get TreeViewItem using TreeView.ItemContainerGenerator.ContainerFromIndex() method... but how to get TreeViewItem.Header ?
Regards,
Marcin
...
I have a TreeView control that I have created in XAML in a WPF program
After adding a couple nodes at the root level, I have written code that loops through the tree structure like so:
ItemCollection items = treeView1.Items;
foreach (TreeViewItem n in items)
{
...
}
Once I find the place in t...
I am using the WPF TreeView to display some hierarchical information. Each item in the TreeView consists of several attributes, so I am using a Grid within my HierarchicalDataTemplate to display these attributes:
<HierarchicalDataTemplate x:Key="ArtistTemplate"
ItemsSource="{Binding XPath=Title}"
ItemTemplate="{StaticResource Ti...
I have the following code, which causes Chrome and Safari to crash (Aw Snap in Chrome)
jQuery(".filetree").treeview({
animated: "fast",
collapsed: true,
unique: true,
persist: "cookie",
toggle: function() { }
});
If I change it to this:
jQuery(".filetree").treeview({
animated: "fast",
toggle: function() { ...
How can we serialize treeview nodes in VB6?
I am unable to figure out how to traverse and preserve the relationships between the nodes for serialization.
...