on 2022 Sep 15 9:00 AM
Hello,
I try to developp a right click on Appointment in singlePlanningCalendar.
I create a custom CalendarAppointment but that doesn't work.
I try to call renderer but i get an error because CalendarAppointmentRenderer.js doesn't exist.
With jquery, it's ok but this solution doesn't please me and works randomly .
Thx for any help !
sap.ui.define(
['sap/ui/unified/CalendarAppointment'],
function (CalendarAppointment) {
"use strict";
return CalendarAppointment.extend("com.AgoraPlanification.tools.customControl.AppointmentTech", {
metadata: {
events: {
rightPress: {}
}
},
oncontextmenu : function (oEvent) {
debugger;
console.log("ok");
},
init: function () {
debugger;
}
});
}
);
User | Count |
---|---|
59 | |
10 | |
7 | |
7 | |
6 | |
6 | |
5 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.