Add buttons into a grid example?

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.

https://www.infragistics.com/community/forums/f/ultimate-ui-for-windows-forms/53470/how-to-add-buttons-in-the-datagrid-rows

I just have to figure out how to get that working since it doesn’t exist in the wizards.