cancel
Showing results for 
Search instead for 
Did you mean: 

Pop up dialog does not close?

Former Member
0 Kudos

Hi all,

I am calling the popup the pop dialog is triggered but i am not able to close the method is not triggered.what might be the issue?

view3.controller


//call the pop up to display the line items

if (!this._Popdelitems) {

this._Popdelitems = sap.ui.xmlfragment("d2","app.POP_Delitems",this);

sap.ui.getCore().byId("idUI_view3").addDependent(this._Popdelitems);

}

this._Popdelitems.open();

popup close method in view3.controller is not triggered.


onCloseDialog:function(){

this._Popdelitems.close();

         

}

Thanks

Deepan Ignaatious

View Entire Topic
Former Member
0 Kudos

Hi all applied   jQuery.proxy to the function and it works fine now