UI control to present hierarchical data

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Marco Pais

    UI control to present hierarchical data

    Hi there.

    I am trying to find th best way (best UI control) to present hierarchical
    data, nested tables. For example, I have a Employees table (id, name) and
    EmployeesSales (id, idEmp, description, value).
    I want to show this in an hierarchical mode, so I tried DataGrid control.
    However, as I read somewhere, this DataGrid can only show one table at a
    time, i.e., when I click "plus" sign, I have only a link to the
    EmployeesSales table.

    So my question is, wich UI control can I use? Could I consider Treeview? Or
    maybe try to find third party controls (unfortunatly, must be free).

    Thanks in advance.

    Regards,

    Marco Pais


  • Ignacio Machin ( .NET/ C# MVP )

    #2
    Re: UI control to present hierarchical data

    On May 5, 7:55 am, "Marco Pais" <marco.pais[at]gmail.comwrote:
    Hi there.
    >
    I am trying to find th best way (best UI control) to present hierarchical
    data, nested tables. For example, I have a Employees table (id, name) and
    EmployeesSales (id, idEmp, description, value).
    I want to show this in an hierarchical mode, so I tried DataGrid control.
    However, as I read somewhere, this DataGrid can only show one table at a
    time, i.e., when I click "plus" sign, I have only a link to the
    EmployeesSales table.
    >
    So my question is, wich UI control can I use? Could I consider Treeview? Or
    maybe try to find third party controls (unfortunatly, must be free).
    >
    Thanks in advance.
    >
    Regards,
    >
    Marco Pais
    We use the controls from Infragistics, theirs grid support that. Take
    a look at the examples:

    Comment

    • Marco Pais

      #3
      Re: UI control to present hierarchical data

      Yeah.. I know those controls. Unfortunatly, I'm not able to afford it.

      Thanks for the reply...


      "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin @gmail.comescre veu na
      mensagem
      news:ed3af9cd-139f-4e00-8df9-7d05e5036b93@y3 8g2000hsy.googl egroups.com...
      On May 5, 7:55 am, "Marco Pais" <marco.pais[at]gmail.comwrote:
      Hi there.
      >
      I am trying to find th best way (best UI control) to present hierarchical
      data, nested tables. For example, I have a Employees table (id, name) and
      EmployeesSales (id, idEmp, description, value).
      I want to show this in an hierarchical mode, so I tried DataGrid control.
      However, as I read somewhere, this DataGrid can only show one table at a
      time, i.e., when I click "plus" sign, I have only a link to the
      EmployeesSales table.
      >
      So my question is, wich UI control can I use? Could I consider Treeview?
      Or
      maybe try to find third party controls (unfortunatly, must be free).
      >
      Thanks in advance.
      >
      Regards,
      >
      Marco Pais
      We use the controls from Infragistics, theirs grid support that. Take
      a look at the examples:



      Comment

      • gerry

        #4
        Re: UI control to present hierarchical data

        check out march & april 2008 MSDN Mag for LISTVIEW control usage.



        "Ignacio Machin ( .NET/ C# MVP )" <ignacio.machin @gmail.comwrote in
        message
        news:ed3af9cd-139f-4e00-8df9-7d05e5036b93@y3 8g2000hsy.googl egroups.com...
        On May 5, 7:55 am, "Marco Pais" <marco.pais[at]gmail.comwrote:
        Hi there.
        >
        I am trying to find th best way (best UI control) to present hierarchical
        data, nested tables. For example, I have a Employees table (id, name) and
        EmployeesSales (id, idEmp, description, value).
        I want to show this in an hierarchical mode, so I tried DataGrid control.
        However, as I read somewhere, this DataGrid can only show one table at a
        time, i.e., when I click "plus" sign, I have only a link to the
        EmployeesSales table.
        >
        So my question is, wich UI control can I use? Could I consider Treeview?
        Or
        maybe try to find third party controls (unfortunatly, must be free).
        >
        Thanks in advance.
        >
        Regards,
        >
        Marco Pais
        We use the controls from Infragistics, theirs grid support that. Take
        a look at the examples:



        Comment

        • Greg

          #5
          Re: UI control to present hierarchical data

          On May 5, 4:55 am, "Marco Pais" <marco.pais[at]gmail.comwrote:
          Hi there.
          >
          I am trying to find th best way (best UI control) to present hierarchical
          data, nested tables. For example, I have a Employees table (id, name) and
          EmployeesSales (id, idEmp, description, value).
          I want to show this in an hierarchical mode, so I tried DataGrid control.
          However, as I read somewhere, this DataGrid can only show one table at a
          time, i.e., when I click "plus" sign, I have only a link to the
          EmployeesSales table.
          >
          So my question is, wich UI control can I use? Could I consider Treeview? Or
          maybe try to find third party controls (unfortunatly, must be free).
          >
          Thanks in advance.
          >
          Regards,
          >
          Marco Pais
          Marco,

          Here is a free opensource project found on CodeProject:


          It might serve your purposes well, but not sure how well.
          By the way, the DataGrid control does support master details view,
          however, the DataGridView control does not.

          cheers

          Comment

          Working...