Hi,

I think the line (row number=158)
         StringBuilder script = new StringBuilder("var w = window.open*(" + 
target
+ ", '")*.append(
                        windowTitle).append("', '");

must be like this. (adding ' "single quotation marks"  to target)
         StringBuilder script = new StringBuilder("var w = window.open*('" + 
target
+ "', '")*.append(
                        windowTitle).append("', '");

Because,
when I use like this, it does not work.                 
popupSettings.setTarget(myULR);
target.appendJavaScript(popupSettings.getPopupJavaScript());

But this worked.
popupSettings.setTarget("'" + myULR + "'");
target.appendJavaScript(popupSettings.getPopupJavaScript());


kemal




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/org-apache-wicket-markup-html-link-PopupSettings-java-problem-version-6-5-0-tp4656735.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to