on 2024 Jan 10 4:55 AM
Hi expert
I am using webide to develop ui5 application , in webide using library version 1.120.00 and on on getway having version 1.102.17.
issue with global eriable. i am using vbm:GeoMap.
js code
onContextMenuSpot: function (e) {
this.E = e;
this.onFetchContextMenuData();
}
onFetchContextMenuData: function () {
var that = this;
calling backend read method with success and error method.
in success success: function (oData) {
BusyIndicator.hide();
debugger
that.onsetContextMenuSpot(oData.results);
}
onsetContextMenuSpot: function () {
hear this.E values <---------------------- reset to null in version 1.102.17. and in version 1.120.00 having last same value
}
any idea or any suggestion how to get this.E last same value in verison 1.102.17?
Thabks
Radhesh
Request clarification before answering.
hi,
its issue in library.
work around. Don’t pass event from one method to another. Instead of it, pass event source and event parameters.
like
this.S = e.getSource();
this.E = e.getParameter("menu");
Thanks
Radhesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
63 | |
8 | |
7 | |
6 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.