Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- init: function() {
- if (!this.oFragment) {
- this.oFragment = sap.ui.xmlfragment("demo_plugin.fragment.Welcome", this);
- sap.ui.getCore().byId("closeBtn").attachPress(function() {
- this.oFragment.close();
- }.bind(this));
- }
- this.oFragment.attachAfterClose(function() {
- this.destroy();
- });
- this.oFragment.open();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement