Hello,
I have a UltraGrid and I need to set one cell of it.
I need to create a cell that has two RadioButtons on the same cell. Is that possible?
Thank you,
Best regards,
Maria
Mike,
I've already solve my problem :)
I have the UltraOptionSet on my UltraGridCell align to the Left but I and to align them to teh Center.
I've tried to use:
radioButtons.Appearance.ImageHAlign = HAlign.Center; radioButtons.Appearance.ImageVAlign = VAlign.Middle; radioButtons.Appearance.TextHAlign = HAlign.Center; radioButtons.Appearance.TextVAlign = VAlign.Middle; radioButtons.ItemSpacingHorizontal = 15; radioButtons.Left = (e.Row.Cells["Value"].Width) / 4;
but none of this solutions worked.
Can you help me?
Thank you for your answer.
I've read about UltraOptionSet but I didn't understand how to use it. Can you give me an example?
Hi Maria,
Yes... add an UltraOptionSet control to the form with the grid. Set the grid cell's EditorComponent property to the UltraOptionSet.