Rank: Member Groups: Member
Joined: 9/1/2010 Posts: 20
|
Hi,
I'm using your EO.Grid for my project. It's good because it's feature. But now i have a condition where i has to merge grid header, so i can put 2 column with one header.
Is there any way that i can treat it like HTML table with rowspan or colspan property??
Thanks for your help.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, We support ColSpan but not RowSpan: http://demo.essentialobjects.com/Demos/Grid/Features/Column%20Span/Demo.aspxNote that col span is on GridCell, not on GridColumn. So if you need span the column header, you will need to set the Grid's ColumnHeaderVisible to False to hide the "normal" column header, and then use fixed top items to simulate column header: http://demo.essentialobjects.com/Demos/Grid/Features/Fixed%20Items/Demo.aspxThe main difference between the fixed top item and column header is fixed top items are "grid items". So they count as a row. Column header does not count as a row. Hope this helps. Thanks!
|
Rank: Member Groups: Member
Joined: 9/1/2010 Posts: 20
|
Hi...
Thanks for your quick response,i think this is what i was looking for..
|