Calling parent onLoad()

Hi I’m having a problem calling a forms inherited onLoad method.

function onLoad(event) {
	databaseManager.setAutoSave(false);
	forms._frmBaseTrains.onLoad(event);
}

This flags the error “method onLoad is undefined”, does anyone know how I should do this.

Ok I suspect I’m getting confused - what I’m actually trying to do is trigger the inherited forms onLoad event - can that be done??
Many thanks in anticipation.
Caroline

You can use the “_super” keyword for that:

function onLoad(event) {
   databaseManager.setAutoSave(false);
  _super.onLoad(event);
}

Many thanks Joas - sorry for the silly question.