Return to Snippet

Revision: 29258
at July 24, 2010 05:23 by d3developer


Initial Code
public class popup {
 
    public boolean displayPopup {get; set;}
 
    public void closePopup() {
        displayPopup = false;
    }
 
    public void showPopup() {
        displayPopup = true;
    }
}

Initial URL


Initial Description


Initial Title
@tehnrd Native Popup Controller

Initial Tags


Initial Language
Other