This is a Javascript newbie question. I do not know how to pass and/or read the inputName and inputComments values in the onSubmit function:
var oButton = new sap.ui.commons.Button({
text: "Submit",
press: function(){
oController.onSubmit.apply(oController, {
inputName: oNameInput.getValue(),
inputComments: oCommentsInput.getValue()
});
}