Skip to Content
0
Jan 10, 2023 at 08:02 AM

sapui5 odata get binding custom parameters in backend

288 Views

Hello,

in bindings I should be able to add custom parameters:

oCtrl.bindAggregation("rows", {
path: "calendar>/rowSet",
parameters: {
custom: {
calendarStartDate: this.getView().byId("idPC1").getStartDate().toISOString()
}
},
template: oTemplate,
filters: this.calendarFilter,
templateShareable: true,
expand: ("NRowToAppointment")

});

but in backend I have no idea how to get these custom parameters in dpc_ext - I searched in debug mode, but could not find anything related to this parameters.

I put it as a custom parameter because I have no corresponding field in my entityset so I can not use the filter.

thanks for your help

Helmut