How to make multi-Row header in the datagrid

M

Martin Marinov

What do you mean by multirow ?

i would suggest you to use Repeater control and then you can add rows in the
header - it doesn't matter how many

Regards
Martin
 
S

Scott Allen

One way to do this is to hook the ItemCreated event.

if(e.Item.ItemType == ListItemType.Header)
{
// add a new DataGridItem to DataGrid Controls collection
}

There are some good example of futzing around with the event in this
article:

Summary Rows in DataGrid Controls
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndive/html/data01102002.asp

As Martin mentioned, there is also the Repeater control, which gives
you much greater control over layout.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top