RE: BookmarkablePageRequestTarget not available in 1.5

2011-09-17 Thread Chris Colman
Ah bewdy! Thanks.

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
Sent: Saturday, 17 September 2011 3:16 PM
To: users@wicket.apache.org
Subject: Re: BookmarkablePageRequestTarget not available in 1.5

even in 1.4 this can be rewritten as rc.setresponsepage(pageclass,
params), in 1.5 it is the same.

-igor

On Fri, Sep 16, 2011 at 8:33 PM, Chris Colman
chr...@stepaheadsoftware.com wrote:
 What should we use in 1.5 to implement this 1.4 code:

                        getRequestCycle().setRequestTarget(new
 BookmarkablePageRequestTarget(UserAccountPage.class, pageParameters));

 ?



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


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



Re: inmethod grid problem in IE8

2011-09-17 Thread Attila Király
Hi Duy,

which wicket, inmethod-grid versions are you using?

Regards,
Attila

2011/9/17 Duy Do doquoc...@gmail.com

 Hi Wicketers,

 I have  a problem with inmethod-grid in IE8 as below error. This issue
 cause the grid display incorrectly. Is it a bug? And how to fix it?

 Webpage error details

 User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64;
 Trident/4.0; EasyBits GO v1.0; SLCC2; .NET CLR 2.0.50727; .NET CLR
 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C)
 Timestamp: Sat, 17 Sep 2011 03:56:56 UTC


 Message: 'undefined' is null or not an object
 Line: 464
 Char: 4
 Code: 0
 URI: http://localhost:8080/**chesscom-web/resources/com.**
 inmethod.grid.common.**AbstractGrid/res/script.jshttp://localhost:8080/chesscom-web/resources/com.inmethod.grid.common.AbstractGrid/res/script.js


 Thanks,
 Duy

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




Re: Basement Coders Meetup at JavaOne 2011

2011-09-17 Thread Igor Vaynberg
a bunch of people sitting in a bar chatting and drinking beer... :)

-igor

On Fri, Sep 16, 2011 at 4:44 PM, Nelson Segura nsegu...@gmail.com wrote:
 Can you explain how does it work? I am thinking on going to java one
 just to check this out.
 -nelson

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



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



Migration 1.4 -1.5: Non package ResourceReference

2011-09-17 Thread Chris Colman
The table in the Wiki suggests replacing
 
1.4 ResourceReference 
 
With
 
1..5 PackageResourceReference
 
But what if the 1.4 ResourceReference was not a package reference but
specified by a URL?
 
Eg., 
 
ResourceReference CSS = new ResourceReference(externalUrl +
pbModalWindow.css);
 
 
 
Yours sincerely,
 
Chris Colman


RE: Migration 1.4 -1.5: Non package ResourceReference

2011-09-17 Thread Chris Colman
I guess I could just not bother creating any ResourceReference instance
and simply use:

renderCSSReference(externalUrl + pbModalWindow.css);


-Original Message-
From: Chris Colman [mailto:chr...@stepaheadsoftware.com]
Sent: Sunday, 18 September 2011 8:34 AM
To: users@wicket.apache.org
Subject: Migration 1.4 -1.5: Non package ResourceReference

The table in the Wiki suggests replacing

1.4 ResourceReference

With

1..5 PackageResourceReference

But what if the 1.4 ResourceReference was not a package reference but
specified by a URL?

Eg.,

ResourceReference CSS = new ResourceReference(externalUrl +
pbModalWindow.css);



Yours sincerely,

Chris Colman

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



Automatic Multi Window Support in 1.5

2011-09-17 Thread Chris Colman
Some 1.4 code:
 
getPageSettings.setAutomaticMultiWindowSupport(false);
 
now can't compile in 1.5.
 
Does this mean Multi Window Support is always on and can't be turned off
in 1.5?