I was creating a table using wxGrid and i need to insert two or three checkbox to a single wxGrid cell.How to create multiple checkbox inside a cell?? Or may i be able to create wxGrid inside a wxGrid cell??

1

There are 1 best solutions below

2
On

Each cell has an editor and a renderer. They can be the deafult ones or you can set them.

This makes no possible to add more than one object to a cell.
How would it be otherwise? How to tell the editor/rendered to be used?

What you can do is set the editor/renderer whenever you like, this is, in response to some event.

Any how, I don't think a control that changes its nature is something user-friendly.

Theoretically, a wxGrid inside a cell may be possible. But, again, I don't think it's a good design.