Re: updating table on main page after modal window is closed..

2013-08-22 Thread Martin Grigorov
Hi, On Thu, Aug 22, 2013 at 7:39 AM, eaglei22 wrote: > here > userPageFindUserModal.setWindowClosedCallback(new > ModalWindow.WindowClosedCallback() > { > public void onClose(AjaxRequestTarget target) > { > System.out.println("ssaIDLISTCON"); > userInformation = new WebMarkupContainer("userAtt

org.apache.wicket.core.util.objects.checker.CheckingObjectOutputStream$ObjectCheckException

2013-08-22 Thread arch1990
This is my code snippet : private String selected ; private Country country=new Country(); private List selectedCountries= new ArrayList(); private List allCountries=new ArrayList(); public TestApp(final PageParameters parameters) { add(new FeedbackPanel("fe

Re: org.apache.wicket.core.util.objects.checker.CheckingObjectOutputStream$ObjectCheckException

2013-08-22 Thread Martin Grigorov
Hi, On Thu, Aug 22, 2013 at 9:14 AM, arch1990 wrote: > This is my code snippet : > > private String selected ; > > private Country country=new Country(); > private List selectedCountries= new ArrayList(); > private List allCountries=new ArrayList(); > > > public TestApp(fin

[ANNOUNCE] WicketStuff 6.10.0 is released

2013-08-22 Thread Martin Grigorov
Hi, WicketStuff core 6.10.0 based on Apache Wicket 6.10.0 is released and shortly will be available in Maven Central. The changelog for this release is: bitstorm (10): Integration with WicketStuff refactor of segments Code clean up for Wicketstuff integration Suggestion f

PackageResourceBlockedException

2013-08-22 Thread Ilkka Seppälä
Hi, I'm trying to implement a base page to be used by multiple web applications. My idea was to make the base page reference some common css and javascripts files through PackageResourceReferences: BasePage.java @Override public void renderHead(IHeaderResponse response) { super.renderHead(respon

Re: updating table on main page after modal window is closed..

2013-08-22 Thread eaglei22
Thank you. Can you show me a simple example of how to pass pagereference, and then update the webmarkupcontainer? Im not very good with javascript. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/updating-table-on-main-page-after-modal-window-is-closed-tp4660996p4

Re: PackageResourceBlockedException

2013-08-22 Thread Martin Grigorov
Hi, You need to add it to the allowed extensions. See http://seclists.org/fulldisclosure/2012/Mar/251 On Thu, Aug 22, 2013 at 2:31 PM, Ilkka Seppälä wrote: > Hi, > > I'm trying to implement a base page to be used by multiple web > applications. My idea was to make the base page reference some

Re: updating table on main page after modal window is closed..

2013-08-22 Thread Martin Grigorov
https://github.com/apache/wicket/blob/master/wicket-examples/src/main/java/org/apache/wicket/examples/ajax/builtin/modal/ModalWindowPage.java?source=cc#L56 target.appendJavaScript("top.location.reload()"); On Thu, Aug 22, 2013 at 2:43 PM, eaglei22 wrote: > Thank you. Can you show me a simple

Re: updating table on main page after modal window is closed..

2013-08-22 Thread eaglei22
That's the example I was originally using, and I did everything like that but my ajax doesn't work upon return calling the webmarkupcontainer, but theirs does. So I don't understand what im doing wrong. Am I supposef to use a model when initializing the webmarkupcontainer? On Aug 22, 2013 6:53 AM,

Re: [ANNOUNCE] WicketStuff 6.10.0 is released

2013-08-22 Thread Andrea Del Bene
Anybody has a list of the new modules available with this last version? I'd like to write an announcement of the new version at JavaLobby. > Hi, > > WicketStuff core 6.10.0 based on Apache Wicket 6.10.0 is released > and shortly will be available in Maven Central. > > The changelog for this release

Re: [ANNOUNCE] WicketStuff 6.10.0 is released

2013-08-22 Thread Martin Grigorov
https://github.com/wicketstuff/core/wiki/Wicket-Stuff-Core-Release-Process#getting-the-list-of-new-modules On Thu, Aug 22, 2013 at 4:24 PM, Andrea Del Bene wrote: > Anybody has a list of the new modules available with this last version? > I'd like to write an announcement of the new version at

Re: [ANNOUNCE] WicketStuff 6.10.0 is released

2013-08-22 Thread Pierre Goupil
Andrea, I'd be curious to have a look at your JavaLobby article. Will you be kind enough to post the link here when it's available, please? Regards, Pierre On Thu, Aug 22, 2013 at 3:24 PM, Andrea Del Bene wrote: > Anybody has a list of the new modules available with this last version? > I'd

Re: [ANNOUNCE] WicketStuff 6.10.0 is released

2013-08-22 Thread Andrea Del Bene
Sure! I've just started to write a draft. If you want you can have a look at http://java.dzone.com/announcements/wicketstuff-6100-out > Andrea, > > I'd be curious to have a look at your JavaLobby article. Will you be kind > enough to post the link here when it's available, please? > > Regards, > >

RE: Multi select transfer widget

2013-08-22 Thread Michael Chandler
Beautiful! That's exactly it. Thanks so much! Mike -Original Message- From: Colin Rogers [mailto:colin.rog...@objectconsulting.com.au] Sent: Wednesday, August 21, 2013 10:46 PM To: users@wicket.apache.org Subject: RE: Multi select transfer widget Michael, The component I think you mea

RE: Wicket serialization concerns

2013-08-22 Thread Michael Chandler
Michael, This is extremely helpful. Thanks for the detailed explanation! Mike -Original Message- From: Michael Mosmann [mailto:mich...@mosmann.de] Sent: Wednesday, August 21, 2013 11:53 PM To: users@wicket.apache.org Subject: Re: Wicket serialization concerns Am 21.08.13 01:01, schrie

Re: receive non-wicket json payload via wicket website

2013-08-22 Thread ricb
Thanks, Nick. How would it be possible to host/run a servlet within a Wicket application? Did you notice my limitations regarding IP and port? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/receive-non-wicket-json-payload-via-wicket-website-tp4660680p4661025.html Se

Re: receive non-wicket json payload via wicket website

2013-08-22 Thread ricb
Thanks, Andrea. I agree: unless I am missing something, IResource seems like the appropriate (and only) way to handle non-Wicket requests via a Wicket application. Do you know if there would be much additional overhead incurred if I run my non-Wicket request-handling code in an IResource (as oppose

Internal frame in Wicket Page to external website

2013-08-22 Thread MartinoSuperman
Hi, I am building a website in Wicket. I would like to make an iframe that points to an external website. Does someone know what code I have to use for that in Java? Thank you in advance! Martino -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Internal-frame-in-

Re: Internal frame in Wicket Page to external website

2013-08-22 Thread Gabriel Landon
Hi Martino, Maybe you can do something like that : -in your html file : -in you java file : WebMarkupContainer container = new WebMarkupContainer("myFrame"); container.add(new AttributeAppender("src", Model.of("http://www.yourwebsite.com";))); add(container); You may also have a look at org.

RE: Going from one web app to another simulating login action

2013-08-22 Thread LauraZ
Thanks! but it's not a single sign on what i'm trying to do... If a user is logged in webA (an administrators web), may impersonate any user in webB (users web). So webA must have a link to redirect to webB using any credentials that a user had chosen. -- View this message in context: http://a

Re: Internal frame in Wicket Page to external website

2013-08-22 Thread Haiko
you can use InternalFrame class in wicket. MartinoSuperman schreef: >Hi, > >I am building a website in Wicket. > >I would like to make an iframe that points to an external website. > >Does someone know what code I have to use for that in Java? > >Thank you in advance! > >Martino > > > >-- >View t

RE: Going from one web app to another simulating login action

2013-08-22 Thread Paul Bors
Precisely, if WebA and WebB are two different web applications, then SSO would solve your problem. Your admin would have the correct permissions as configured for the Administrators group in your windows domain. You could even grab the current user's account log into a desktop and bypass the login

RE: Going from one web app to another simulating login action

2013-08-22 Thread Paul Bors
Or are you simply trying to implement the Linux "su" command here between two web apps (have an admin choose what user to login under the second webapp)? Maybe this can help you? http://docs.oracle.com/cd/E27559_01/dev.1112/e27134/impersonation.htm Still based on SSO. ~ Thank you, Paul Bors -

Re: Internal frame in Wicket Page to external website

2013-08-22 Thread Gabriel Landon
Haiko, I'm not aware of an InternalFrame class in wicket. In which package did you find it? Reagrds, Gabriel. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Internal-frame-in-Wicket-Page-to-external-website-tp4661032p4661041.html Sent from the Users forum mailing

Re: receive non-wicket json payload via wicket website

2013-08-22 Thread Martin Grigorov
Hi, IResource is like a Servlet with access to the Wicket Application, Session and RequestCycle. On Thu, Aug 22, 2013 at 9:49 PM, ricb wrote: > Thanks, Andrea. I agree: unless I am missing something, IResource seems > like > the appropriate (and only) way to handle non-Wicket requests via a Wi