Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
80
add new row to UltraWebGrid after current row?
posted

Is it possible to add a new table row in UltraWebGrid after the current row is bound? In other words, after each row is bound I want to add a new row that spans all columns so I can display a large amount of data:

[databound column][databound column][databound column]
[new row with colspan 3 and data from current row of data]
[databound column][databound column][databound column]
[new row with colspan 3 and data from current row of data]

The best solution I could come up with was to make a hierarchy out of the flat data and bind the new row as a child band. Seems like I must be missing something...