You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by al...@apache.org on 2007/05/22 17:46:18 UTC

svn commit: r540613 - /incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java

Author: almaw
Date: Tue May 22 08:46:16 2007
New Revision: 540613

URL: http://svn.apache.org/viewvc?view=rev&rev=540613
Log:
Note you should use <div> not <span> in doc - WICKET-506

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java

Modified: incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java?view=diff&rev=540613&r1=540612&r2=540613
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/modal/ModalWindow.java Tue May 22 08:46:16 2007
@@ -47,6 +47,9 @@
  * prevent user from interacting the rest of page (using a mask) until the
  * window is closed.
  * <p>
+ * If you want this to work under IE, don't attach this component to a
+ * &lt;span&gt; tag, make sure you use a &lt;div&gt;.
+ * <p>
  * The window is draggable and optionally resizable. The content can be either
  * <ul>
  * <li><b>a component</b> - you need to add the component to modal window
@@ -101,7 +104,8 @@
  * in a cookie, so that it is preserved when window is close. The name of the
  * cookie is specified via <code>{@link #setCookieName(String)}</code>. If
  * the name is <code>null</code>, position is not stored (initial width and
- * height are always used). Default cookie name is null (position is not stored).
+ * height are always used). Default cookie name is null (position is not
+ * stored).
  * <li><code>{@link #setMinimalWidth(int)}</code> and
  * <code>{@link #setMinimalHeight(int)}</code> set the minimal dimensions of
  * resizable window.