Hi,
In the controller you are fetching the reference to oComboBox by its id "oComboBox" in the below line:
var oComboBox = this.getView().byId("oComboBox");
But you haven't anywhere fetched the oComboBox1 reference, directly you are calling the bindAggregation() function on the variable oComboBox1. Before calling bindAggregation() on oComboBox1 first fetch the reference using the id "oComboBox1" as below and then check if the error resolves.
var oComboBox1 = this.getView().byId("oComboBox1");Regards,
Saurabh