I have a two column TreeView attached to a ListStore. Both columns are CellRenderCombo combo boxes.
When the user selects an entry in the first box, I need to dynamically load a set of options in the second.
For example, the behavior I want is:
On row 0, the user selects "Alphabet" in the first column box.
The second column box is populated with the letters "A-Z".
On row 1, the user selects "Numbers" in the first column box.
The second column box is populated with the numbers "0-9".
On row 2, the user selects "Alphabet" in the first column box.
The second column box is populated with the letters "A-Z".
etc.
Does anyone know how to do this, or seen any open source pygtk or gtk projects that have similar behavior which I can analyze?