IThemableAplication no longer exists

2013-03-12 Thread Ramin
Hi 

I have a couple of issues with Wiquery in wicket 6.

1. What is an alternative for IThemableApplication#getTheme(Session session)
2. @WiQueryUIPlugin is missing from wicket 6, is there any replacement or is
it not needed any more

Many thanks
Ramin



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/IThemableAplication-no-longer-exists-tp4657183.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



Re: IThemableAplication no longer exists

2013-03-12 Thread Gabriel Landon
Just follow the migration guide : 
http://code.google.com/p/wiquery/wiki/Migration60

1 - The IWiQueryPlugin interface is now deprecated as users can now more
easily render their statements in the Component#renderHead(..) function.
This makes the interface rather useless. All code which you had in
IWiQueryPlugin#statement() can be moved to the Component#renderHead(..)
function.


2 -  public class CustomApplication extends Application {

...

@Override
protected void init()
{
   
addResourceReplacement(WiQueryCoreThemeResourceReference.get(), new
WiQueryCoreThemeResourceReference(custom));
}
}

Regards,

Gabriel.




--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/IThemableAplication-no-longer-exists-tp4657183p4657191.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