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
3166
Default UltraGridGroup
posted

Is there a way to specify a default group so don't have iterate through the columns to add to default group?

  • 469350
    Verified Answer
    Offline posted

    Hi BB,

    No, there's no default group. You have to specify a group for each column that you want displayed in the grid.

    Having a default group is not a bad idea, though. You should Submit a feature request to Infragistics

  • 230
    posted

    I add groups to a few of my grids on startup.  Here's a relavent snippet:

    someGrid.DisplayLayout.Bands[0].SortedColumns.Add("columnName", false, true);

    someGrid.DisplayLayout.Rows.ExpandAll(true);

    Hope it helps...