DataGrid

  • Thread starter Thread starter Fox
  • Start date Start date
F

Fox

Is it possible display one record in multi rows instead of one row.

eq.

_______________________________
Client Name | ABC Internation Co Ltd
Contant | Peter Brown
Tel | 222-2334324
_______________________________
Client Name | DBS Co Ltd
Contant | Micheal
Tel | 345-2312312
_______________________________
 
Hi Fox,

i don't know if such a control exist,
but you could build your own user control.

Cheers
Lars Behrmann
_________________
Nothing is impossible. UML is the key for all your problems.
AODL - Make your .net apps OpenOffice ready
http://aodl.sourceforge.net/
 
Hi,

Maybe you can find a creative way using the datagrid but by default each
row in the datagrid correspond to one object in the collection.
You can use a Repeater though.

Another possibility, in case you HAVE to use a datagrid is creating a
collection from your original datasource where each element correspond to
one row in the desired way in the grid.


cheers,
 
Back
Top