We are a brand new customer of Infragistics and we are starting to implement the WebGrid into our corporate website. However, we have come across a particular page that I don't know if we can reproduce with the WebGrid.
Take a look at this screen:
On the line with the "Login" of "trainme," is it possible to have "multirows" with "merged cells." This is a screen from our current website without using Infragistics and we're trying to reproduce this in the WebGrid, if possible.
Thanks in Advance!
I've included a screen shot of what we're trying to accomplish. Can the UltraWebGrid do this? If so, how? I can't find any examples or information on where to even begin to do something like this. I need help quickly, please!
Notice how there are "2 rows", but they act like 1 row when selected and you are able to still move columns, sort, and resize.
Please help!
Alright. We're kind of heading in the right direction. Look at this screen:
What I'm looking to do here is create a line that looks like what is circled in red, above. However, when I select either "row" they are selected as "one row." Right now, in the examples, they both get as a seperate row.
What we are looking for is when I select either row, they are selected as one row. Now, this could be that we can combine both rows, but we still want to also have the functionality of sorting, resizing columns, etc.
It's similar to having something like:
<table>
<tr>
<td>Header</td><td>Header</td><td>Header</td>
</tr>
<td>Data</td><td>Data</td><td>Data</td>
<td>
<td colspan="3">One line of data</td>
</td>
</table>
As you can see there is a sub-table in the main table.
I hope that makes some sense. :)
Thanks.
I just want to add that we also have to great online examples showing the two methods for cell merging - they are caled "Cell Merging - Manual" and "Cell Merging - Auto". Both examples are available in our samples browser located here:
http://samples.infragistics.com/2008.2/webfeaturebrowser/default.htm
(just navigate to the Grid chapter from the left navigation, then choose the "Designing Look and Feel Option" and you will see both samples there). Full C# / VB.NET code is available in the samples.
Hello,
Yes, I believe this is possible using the UtraGridCell RowSpan and ColSpan properties.I think there is a good article online demonstrating how to use a technique to which we refer to as "manual cell merging".
http://help.infragistics.com/Help/NetAdvantage/NET/2007.2/CLR2.0/html/WebGrid_Merging_Cells_Manually.html
Hope this helps.