Yeah, I’ve done radio buttons before. The difference between this and radio buttons is to get the button wired up to do an action.
I was able to add this code and it gets me some buttons
workGrid.DisplayLayout.Bands[0].Columns.Add("CompleteQty","Action");
workGrid.DisplayLayout.Bands[0].Columns["CompleteQty"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
workGrid.DisplayLayout.Bands[0].Columns["CompleteQty"].ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
Now I just have to figure out how to get the event wired up. Looks like I need to use ClickCellButton event according to this page.
I just have to figure out how to get that working since it doesn’t exist in the wizards.