Hi everyone. I'm designing a screen in Fiori. There will be different buttons on the screen. More than one button does not work in the same runtime. For example;
When I click this button, a dialog opens.
Here I save datas and exit.
Then when I click on the first screen different button it doesn't work. I need to refresh to page it work.
Dialog screens are each like this:
_getlisanEkleDialog: function () { if (!this._oLisanEkleDialog) { this._oLisanEkleDialog = sap.ui.xmlfragment("projeler.ozgecmisUygulamasi.fragment.lisanEkle", this); this.getView().addDependent(this._oLisanEkleDialog); jQuery.sap.syncStyleClass("sapUiSizeCompact", this.getView(), this._oLisanEkleDialog); } return this._oLisanEkleDialog; },<br>
I checked the nomenclatures, couldn't find any mistakes. What is my problem?