choice_editor = wx.grid.GridCellChoiceEditor(choices_list, True) grid.SetCellEditor(row, col, choice_editor) Dynamic list updating with a GridCellChoiceEditor A common question is how to dynamically update the list in a GridCellChoiceEditor. The prob…