Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <Button text="Click to display global variable" press="onDisplay"></Button>
  2.  
  3. onInit:function()
  4. {
  5. this.value = "Welcome New user!"; //global variable
  6. },
  7. onDisplay:function()
  8. {
  9. sap.m.MessageToast.show(this.value);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement