Author: mvitenkov
Date: 2008-05-20 10:30:03 -0400 (Tue, 20 May 2008)
New Revision: 8659
Modified:
trunk/test-applications/jsp/src/main/java/util/event/Event.java
Log:
onbeforehide, onbeforeshow
Modified: trunk/test-applications/jsp/src/main/java/util/event/Event.java
===================================================================
--- trunk/test-applications/jsp/src/main/java/util/event/Event.java 2008-05-20 14:29:36
UTC (rev 8658)
+++ trunk/test-applications/jsp/src/main/java/util/event/Event.java 2008-05-20 14:30:03
UTC (rev 8659)
@@ -109,6 +109,8 @@
private String onuploadcomplete;
private String onviewactivated;
private String onviewactivation;
+ private String onbeforehide;
+ private String onbeforeshow;
// showEvent('onkeypressInputID', 'onkeypress work!')
public Event() {
@@ -214,6 +216,8 @@
onuploadcomplete = "showEvent('onuploadcompleteInputID',
'onuploadcomplete work!')";
onviewactivated = "showEvent('onviewactivatedInputID',
'onviewactivated work!')";
onviewactivation = "showEvent('onviewactivationInputID',
'onviewactivation work!')";
+ onbeforehide = "showEvent('onbeforehideInputID', 'onbeforehide
work!')";
+ onbeforeshow = "showEvent('onbeforeshowInputID', 'onbeforeshow
work!')";
}
public String getOncontextmenu() {
@@ -1232,4 +1236,20 @@
this.onuploadcomplete = onuploadcomplete;
}
+ public String getOnbeforehide() {
+ return onbeforehide;
+ }
+
+ public void setOnbeforehide(String onbeforehide) {
+ this.onbeforehide = onbeforehide;
+ }
+
+ public String getOnbeforeshow() {
+ return onbeforeshow;
+ }
+
+ public void setOnbeforeshow(String onbeforeshow) {
+ this.onbeforeshow = onbeforeshow;
+ }
+
}
\ No newline at end of file
Show replies by date