Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9069127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:20:51+00:00 2026-06-16T17:20:51+00:00

I am using a UltraWinGrid and would like to have two columns under one

  • 0

I am using a UltraWinGrid and would like to have two columns under one heading. I should also note that I am doing this by adding the columns at runtime.

I cannot find anywhere in the documentation that describes what I am trying to achieve. Any help would be appreciated.

The result:

|            |     Header 1    |     Header 2    |
--------------------------------------------------
|Row 1       | Item 1 | Item 2 | Item 1 | Item 2 |
|Row 2       | Item 1 | Item 2 | Item 1 | Item 2 |
|Row 3       | Item 1 | Item 2 | Item 1 | Item 2 |
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T17:20:53+00:00Added an answer on June 16, 2026 at 5:20 pm

    You can use groups to accomplish this. You will want to create a group for the first column and then groups for each of the groups of two columns. You can then hide the original headers and show only the groups.

    The following code is a simple example of this:

    void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
    {
        UltraGridBand band = e.Layout.Bands[0];
        band.ColHeadersVisible = false;
        ColumnsCollection columns = band.Columns;
    
        UltraGridGroup group0 = band.Groups.Add("group0");
        group0.Header.Caption = "";
        UltraGridGroup group1 = band.Groups.Add("group1");
        group1.Header.Caption = "Header 1";
        UltraGridGroup group2 = band.Groups.Add("group2");
        group2.Header.Caption = "Header 2";
    
        columns[0].Group = group0;
        columns[1].Group = group1;
        columns[2].Group = group1;
        columns[3].Group = group2;
        columns[4].Group = group2;
    
    }
    

    The Create a Multiple-Row Layout Using Levels help topic also has another example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using an ultragrid and inside i have values that i load into
Using ember 1.0.0-pre3 I have a little app that has this code: window.App =
We're using Infragistics UltraWinGrid as a base class for customized controls. One of the
Using SSRS 2008 R2 I have a background process that dynamically generates RDL for
I have an Infragistics UltraWinGrid and I'm using its built-in column chooser. However there
Using CRM 4, I have an entity form that contains a tab with an
I've been using the Infragistics UltraWinGrid for a while in a C# project, and
I am using the Infragistics UltraWebGrid to capture some data. I don't have this
Using Trigger.io's barcode api in an application that only contains boilerplate HTML and the
I moved a vb project to a new computer. This one does not have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.