Questions tagged [ultratree]

Tree control provided by Infragistics

18 questions
7
votes
0 answers

UI Automation Infragistics UltraWinTree Collapse

In Windows Forms we are using Infragistics UltraWinTree control. Goal : collapse all the tree items using UI Automation(UIAutomationClient.dll). For more details about the UI Automation please refer:…
User
  • 804
  • 8
  • 22
4
votes
2 answers

HowTo: Highlight the selected node in a UltraTree

I have a UltraTree control which selects a page to display in a UltraTabControl. I am catching an event and figure out which node in the tree I want to select. This works all fine, just one (visual) thing wont: the activated node is not highlighted…
lostiniceland
  • 3,729
  • 6
  • 38
  • 50
3
votes
2 answers

UltraTree Infragistics - select all the nodes

In Infragistics UltraTree, how can one select all the nodes under a root?
Bote5340
  • 31
  • 1
  • 2
1
vote
1 answer

How do I reorder nodes in an UltraTree?

I've got a class that looks like this: public class GeneralStatusInfo { public List List_BLNumber { get; set; } public List List_PONumbers { get; set; } public List List_Pickup { get; set; } public…
1
vote
1 answer

How to add a custom property in UltraTreeNode Collection (Infragistics UltraTree Control)

How can I add a custom property in UltraTreeNode collection? using UltraTree Infragistics control 12.x version. For example: UltraTree MyUltraTree = new UltraTree(); UltraTreeNode MyNode = new UltraTreeNode(); MyNode.Text = "Caption of My…
Haseeb
  • 746
  • 7
  • 22
1
vote
2 answers

Getting all visible Nodes from Infragistics UltraTree

I have 1 root node and many child nodes of that root node. I want to get all of the visible nodes key. The recursive code block like below; public void PrintNodesRecursive(UltraTreeNode oParentNode) { foreach (UltraTreeNode oSubNode in…
john true
  • 263
  • 1
  • 5
  • 26
1
vote
2 answers

how to make checked all child node for selected node in ultrawintree in infragistics?

I have ultrawintree control in my application. Now i want to make checked all the child node of selected treenode in tree. I am new in windows application. So please help to find out the solution for the same. So can anyone tell me how to do it?
Brijesh Patel
  • 2,901
  • 15
  • 50
  • 73
1
vote
1 answer

Infragistics: Attach EventHandle to UltraTreeView not using designer

I am creating a UltraTree dynamically. I need to attach click event to the nodes. When I attempt to do this in the same fashion as my other controls that I created using the designer, I get an error on the attachment statement: No overload for…
ExceptionLimeCat
  • 6,191
  • 6
  • 44
  • 77
0
votes
4 answers

Need UltraTree Clone Method - Problem with reference

I have ultraTree (infragistics tree) which is created at design time and it has custom class as "Tag". I have List as member variable. I have two combo box. Based on the combo selection I'll check the List's each items "Tag". If list contains, just…
Mohanavel
  • 1,763
  • 3
  • 22
  • 44
0
votes
1 answer

How to check if an UltraTree node already exists

I need to loop through data and add nodes to an UltraTree object for each facility. But it fails when there are multiple records for a given facility. System.ArgumentException: 'Key already exists, key: ts1' So I'm trying to check the existing…
0
votes
1 answer

Mimicking the UltraGridColumnChooser's drag & drop ability

(Infragistics 2008 Vol. 3, CLR 2.0) Infragistics's UltraGrid comes with a column chooser user control, which is simply a vertical arrangement of columns with checkboxes that toggle a column's hidden state. In addition, it allows you to pick a column…
Sören Kuklau
  • 19,454
  • 7
  • 52
  • 86
0
votes
2 answers

Infragistics UltraTree print/preview with nodes that have formatted/markup text

I'm trying to print/preview an Infragistics UltraTree (winform) (version 14.2) which has formatted/markup text The nodes of the tree use Infragistics.Win.FormattedLinkLabel.UltraFormattedTextEditor with TreatValueAs =…
Greg Delaney
  • 81
  • 11
0
votes
1 answer

Using UltratreeView (Infragistics TreeView) control

Hello All I am using infragsitics tree view control.I have one stored procedure that returns 2 tables 1.Parent Table 2.Child Table Currently i m Binding the treeview on the basis of these 2 tables by using loops wherein i take one row of the master…
KuldipMCA
  • 3,079
  • 7
  • 28
  • 48
0
votes
1 answer

How to lazy load Infragistics UltraWebTree control?

I cannot find any examples of how to lazy load the Infragistics UltraWebTree v6.3 I found that the docs on the Infragistics site tend to be limited to the latest version of their controls, but this is a legacy app which I am unable to upgrade. Has…
Daniel Dyson
  • 13,192
  • 6
  • 42
  • 73
0
votes
0 answers

How to sort UltraTree Nodes

I have a ultratree build like this…
Glenn Bettens
  • 65
  • 1
  • 8
1
2