After the ultrawebgrid has been databound I'm inserting a new row every odd numbered index. I will use this row to display some data related to the previous row's data. For each new row I insert, I am merging all cells in that row (setting the colspan for the first cell in the row) and then I set the value on the first cell. The problem is the cells never actually merge. After the page is rendered the data I have set in the cell only shows in the area where the first cell would normally be. So it's like I never merged the cells at all...
Any ideas???
A view of the html source code shows the cells for those rows aren't actually merging at all. There's not a colspan attribute anywhere on the page.
Any ideas?
Figured it out. I needed to add the new rows to the datasource and then set the colspan in the initializerow event....