I'm obviously missing some basic understanding of either Go or Wx Widgets.
I'm trying to create a very basic table with checkboxes in the first column.
table := wx.NewGrid(w, wx.ID_ANY)
table.CreateGrid(4, 2)
table.SetCellEditor(0, 0, wx.SwigIsGridCellBoolRenderer{})
That code gives me this error:
invalid type for composite literal: wx.SwigIsGridCellBoolRenderer
I know I also have to set the editor. But I'm not even that far. The more detailed the answer, the better. Thank you!