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
175
Rowspan in a UltraGrid filled with a DataTable
posted

I'm trying to do a Rowspan between two cells in a UltraGrid filled with a DataTable.

I have a DataTable where I add some rows, containing string's and int's, and I want to "span" the rows in the first column and group it every two rows.

I'll try to do an example ....

HEADER ->    COL 1             || COL2 || COL3 || COL4 |

                    -------------------------------------------------------------

ROW1 ->        TEXT               || 1234  ||  1234  ||  1234 |

                     (no separation)  ||  ------  ||  ------  ||  ------  |

ROW2 -->       SPANNED       || 1234  ||  1234  ||  1234 |


Thanks in advance!! 


  • 469350
    Verified Answer
    Offline posted

    I'm not really clear on exactly what you want here, but the only suport the grid has for spanning a single cell across multiple rows is by using the CellMerging feature. This merges cells that have the same value across multiple rows.