ASP.net Treeview/Listview combination or alternative
NickName:jlrolin Ask DateTime:2010-02-19T01:04:30

ASP.net Treeview/Listview combination or alternative

I need to create an ASP.net page that has a control on the page that has a five-level TreeView on the left side of the page, and accounting balances on the right side the coincide with each breakdown in the tree. Top level is company, next is group, next is program, etc... and the balances break down accordingly.

I've seen that there are controls out there such as TreeView/ListView combination controls that can do this. Can I accomplish this without paying for controls?

Could a treeview do this alone by spanning data across the entire length of the columns since every level will have totals on it?

Copyright Notice:Content Author:「jlrolin」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/2290549/asp-net-treeview-listview-combination-or-alternative

Answers
nbushnell 2010-02-18T21:24:48

If I were you and I was not paying for controls. I would use jquery and find some pre built trees and grids. A quick Google search brings up jsTree for the tree view. I would try it out. It looks like you just give it bunch of nested ul and li tags. For the right side of your page I would try out flexigrid. It looks like it could get the job done. If you happen to be using MVC I would check out the Telerik MVC controls they are free.\n\nIf I am not you and paying for controls I am using Telerik or ComponentArt. They are well worth the cost. ",


More about “ASP.net Treeview/Listview combination or alternative” related questions

ASP.net Treeview/Listview combination or alternative

I need to create an ASP.net page that has a control on the page that has a five-level TreeView on the left side of the page, and accounting balances on the right side the coincide with each breakdo...

Show Detail

Alternative Text in treeview control in asp.net

I am looking for a solution. My treeview control contains the menuitems for my web application and its populated from a sitemap and it's working fine. Now I need to add alternative text to that menu

Show Detail

Is there a feature compatible alternative to asp:ListView?

Is there a feature compatible alternative to the asp:ListView control that came with ASP.NET 3.5? Due to some recent issues with a certain hosting provider's installation of SP1, I'm looking for a

Show Detail

VBA Drag Drop From TreeView to ListView & ListView to TreeView (ActiveX Controls)

Trying to drag a child node only from a ActiveX TreeView Control to an ActiveX ListView control in VBA for Excel. It works occasionally, but something is wrong. I'm unable to consistently get the ...

Show Detail

WPF: ListView as treeview (with GroupItem)

Is there a way to render a ListView (using Group Item) as a treeview? Maybe hierarchical template can be useful. BTW, which WPF control was it build (TreeView or ListView)?: Undefined Control

Show Detail

WinForms ListView and TreeView: strange performance issues

When optimizing UI in our project I noticed really strange boost up in ListView and didn't understand where it comes from. Simple adding 5000 elements to listView (View: List) - 3815 ms: for (int...

Show Detail

Building a navigation in asp.net using treeview control

I'm trying to build a windows explorer like simple navigation menu in asp.net using a Treeview control And I have placed a Listview control which displays the children of the selected node dynamic...

Show Detail

How to trigger the Listview behind when Treeview is click?

I have treeview inside my Listview like below <ListView x:Name="LvItemDisplay" ItemsSource="{Binding itemDisplayList}" SelectionChanged="LvItemDisplay_SelectionChanged"> <ListVie

Show Detail

Use ListView and TreeView to list folders and files

I have a windows form that contains two controls (TreeView and ListView), i want to display all directories for a specific path in the TreeView and when the user clicks to any directory listed in the

Show Detail

Data not being populated in TreeView from ListView

I want the selected List Data to populate the tree Here was my attempt towards it if ListView1.Items[Count].Selected then begin Root := ListView1.Items[Count].Caption; for Itr := TreeView1.I...

Show Detail