Is Paging possible with Treeview?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there some way to incorporate paging with a treeview, or are there some
new controls out there that would be capable of this sort of thing?

Can a treeview be put in a datagrid? If so, how?
 
Any control can be added to a datagrid. But you need to understand that you
may be overloading the user since the amount of data being displayed is
significant.

A tree control is designed to display hierarchical data easily, where as a
datagrid displays non-hierarchical data in the typical case. I'm not aware
of any requirement thus far that would require a mix of the two types in one
control structure. It certainly is possible, but would be significantly
awkard in its usability.

--
Regards
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
 
Hmmmm - how about MSDN newsgroups? They have a plus minus button to expand
and when expanded, it displays a hierarchy. Additionally, paging is
incorporated. Any ideas how it's done?

Also, when I added a treeview to a datagrid, I couldn't get the vb code to
recognize the treeview. Is there a special way of coding it?

Thanks for your response, by the way!

Alvin Bruney said:
Any control can be added to a datagrid. But you need to understand that you
may be overloading the user since the amount of data being displayed is
significant.

A tree control is designed to display hierarchical data easily, where as a
datagrid displays non-hierarchical data in the typical case. I'm not aware
of any requirement thus far that would require a mix of the two types in one
control structure. It certainly is possible, but would be significantly
awkard in its usability.

--
Regards
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
--------------------------------------------------


Sandy said:
Is there some way to incorporate paging with a treeview, or are there some
new controls out there that would be capable of this sort of thing?

Can a treeview be put in a datagrid? If so, how?
 
Back
Top