@tehnrd Native Popup Controller


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. public class popup {
  2.  
  3. public boolean displayPopup {get; set;}
  4.  
  5. public void closePopup() {
  6. displayPopup = false;
  7. }
  8.  
  9. public void showPopup() {
  10. displayPopup = true;
  11. }
  12. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.