After configuring an aggregation for my Component, here is what it looks like:
aggregations : {
busyDialog : {
type: "sap.m.BusyDialog",
multiple: false
}
}
The aggregation is named "busyDialog" and can hold objects of the type "sap.m.BusyDialog".
I have the capability to retrieve the object along with its settings using
my.ui5.namespace.Component.getMetadata().getAggregations().busyDialog
However, I am unsure about the most effective way to add an item to it or access a control that has already been added in the aggregation. Are there any methods such as "addbusyDialog" available?
I was referring to this resource: