cancel
Showing results for 
Search instead for 
Did you mean: 

SAP UI5 library version issue

Radhey
Explorer
0 Kudos
439

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

Accepted Solutions (1)

Accepted Solutions (1)

Radhey
Explorer
0 Kudos

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

Answers (0)