Browse By Tags

  • Binding custom class to tree

    Here is my code:

    using System.Collections.Generic;using System.ComponentModel;
    using System.Windows.Forms;

    namespace infragistic_tree
    {
      public partial class Form1 : Form
      {
      public Form1()
      {
      InitializeComponent();

      var folder1…

  • Herachical Grids

    Hi,

    I have the requirement for hierarchical grid. I read on the ifragistics website that  WinGrid cannot be used for hierachical purposeds with a dataset contaning different tables i.e where the columns are different at each level. For this requirement…

  • How to sort nodes on a different column?

    I have an explorer like tree which is bound to a datasource. I want to be able to sort by something other than the text of the node. For example, I have a "NodeType" field and the value is either Folder or File. I want all Folders to be on top, and for…

  • Ultra tree binding to custom class problem

    These are my classes:

        class TreeFolderList : BindingList<Folder>
        {     
        }

        class Folder
        {
            private string _name;
            private BindingList<Folder> _subFolders = new BindingList<Folder>();
            public Folder(string name)
            {
                _name = name;
            }

            public…

  • Get Parent Node

     I am using the following code to get the node a user clicks on.  I also want to get the parent node of the node the user clicked on.  

     

     Private Sub UltraTree1_MouseUp(ByVal sender As Object, _
          ByVal e As System.Windows.Forms.MouseEventArgs) _
          Handles ultratree1…

  • Cells are not editable, but AllowCellEdit.Full is set

    Hi,

    I try to use a WinTree to Edit some Data too.

    What's to do, to make a Column editable? At the Moment I'm writing a Code like this:

            private void ultraTreeDeliveryItems_ColumnSetGenerated(object sender, ColumnSetGeneratedEventArgs e)
            {
                switch…

  • Re: Custom layout of WinTree

    Hello Brian,

    for the sample reference I meant this URL:

    http://www.infragistics.com/dotnet/netadvantage/winforms/wintreegallery.aspx#Gallery

    and expressely the "Custom Rendering" sample. Do you know if sources of these samples are available for download…

  • Node Reposition makes nodes disappear

    Weird problem - hoping somebody can help me with it. Trying to do a simple drag and drop inside a UltraTree. Here is my sample tree - taken from a sample

    groupTree.Nodes.Add("Continent:North America", "North America");
    groupTree.Nodes…

  • Re: UltraGrid/UltraTree hybrid to show hierarchical and row like data side by side.

    Thanks. Do you have a recommendation on how I may suppress the scrollbar in the tree and have a single scrollbar for the combined tree and grid? Alternatively, should I try the Outlook view style although I don't use DataSets?