SV: problem with wicket + spring + hibernate

2010-08-10 Thread Wilhelmsen Tor Iver
I noticed that you ignored the warning here: > by placing the Wicket filters first. - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

problem with wicket + spring + hibernate

2010-08-10 Thread Will Martinez A .
Hello, I'm newbie with wicket, I'm trying to set up a new project, I took some configuration examples from 5 days of wicket, but I don't know what happened, for some reason I'm not able to save my data, I'm using spring annotations, my application begins with a login form, after that it shows

Re: [wicketstuff-core] Notice of java5/java6 restructuring ahead of 1.4.10 release

2010-08-10 Thread Michael O'Cleirigh
Hello, I have committed the changes related to moving the modules into seperate directories. Right now the hudson build server is not building snapshots correctly but I have just run through deploying them manually. I also have to fine tune how the maven compiler plugin is configured as right

Re: scroll bar for palette

2010-08-10 Thread rasheed
hello, thanks for your answer, but this solution doesn't work and horizontal scroll bar still not appears even if the palette contains a large elements. thx -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/scroll-bar-for-palette-tp2320164p2320726.html Sent from the Wi

Replacing Contents of ModalWindow

2010-08-10 Thread Brad Grier
We allow users to define custom "triggers" on a form submit (an ajax submit). These triggers can send an email or take the user to another form/panel (basically a panel-swap via Ajax). This panel-swap works fine until circumstances land the form in a ModalWindow. I can't get the ModalWindow to

[wicketstuff-core] Notice of java5/java6 restructuring ahead of 1.4.10 release

2010-08-10 Thread Michael O'Cleirigh
Hello, With wicket 1.4.10 almost here I am taking steps to get wicketstuff-core trunk to compile again. I have added profiles into the wicketstuff-core/pom.xml to allow building some modules using java5 and others using java6 but for release purposes I need to change the structure to somethi

Re: DataView/LoadableDetachableModel/onClick

2010-08-10 Thread Igor Vaynberg
there are provisions for serialization, but it is not perfect. eg if a model alters a property of the page to which it carries the reference those changes will be lost because what will be serialized is just a "reference to page x". -igor On Tue, Aug 10, 2010 at 12:14 AM, Leszek Gawron wrote: >

Re: Loading Wicket resources from a background thread

2010-08-10 Thread rmattler
Wow just asked this same question. I didn't see you post (sorry list). Please let me know if you figure it out. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Loading-Wicket-resources-from-a-background-thread-tp2319046p2320388.html Sent from the Wicket - User maili

Re: jsr 286 inter-portlet communication

2010-08-10 Thread Igor Vaynberg
not sure. i dont work with portlets so have no idea. -igor On Tue, Aug 10, 2010 at 1:07 PM, dgh1 wrote: > > Thanks Igor for your response. I thought I had read that wicket 1.4.x was JSR > 286 complaint but not sure how that is possible since JSR 286 does call out > inter-portlet communications.

Re: jsr 286 inter-portlet communication

2010-08-10 Thread dgh1
Thanks Igor for your response. I thought I had read that wicket 1.4.x was JSR 286 complaint but not sure how that is possible since JSR 286 does call out inter-portlet communications. Did i mis-read the documentation. Thanks again for your response -- View this message in context: http://apa

quartz job bean access to properties file

2010-08-10 Thread rmattler
I'm struggling with how to get access to the properties file from a quartz job bean. I'm creating a pdf report that will then be emailed. I want to get access to the properties file to tell me where to write the file along with other information. Here is my quartz job code. Thanks in advance.

Re: jsr 286 inter-portlet communication

2010-08-10 Thread Igor Vaynberg
currently 1.5 has no support for portlets. and it probably wont until someone from the core team starts using portlets on the daily basis. -igor On Tue, Aug 10, 2010 at 7:28 AM, dgh1 wrote: > > > I read in the PortletsInAction manning book that  for wicket  that > inter-portlet communications is

Re: jsr 286 inter-portlet communication

2010-08-10 Thread Fernando Wermus
I think I read something in brix framework about this. I think is already offered. On Tue, Aug 10, 2010 at 11:28 AM, dgh1 wrote: > > > I read in the PortletsInAction manning book that for wicket that > inter-portlet communications is not in 1.4.x but will be in 1.5. Can > somebody please veri

Re: scroll bar for palette

2010-08-10 Thread Fatih Mehmet UCAR
You need to override the getCSS method. You may use the below code and css. @Override protected ResourceReference getCSS() { return new ResourceReference(Palette.class, "RelistPalette.css"); } table.palette { border: 0; } table.palette td.header { text-align: center; font-weig

scroll bar for palette

2010-08-10 Thread rasheed
hello, is there a way to show scroll bar in wicket palette? i've tried this css but doesn't work : table.palette td.pane select { width:400px !important; scroll: auto !important; } help plz -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/scroll-bar-for-palette-tp

Re: can not register

2010-08-10 Thread Jeremy Thomerson
On Tue, Aug 10, 2010 at 9:03 AM, Dale Herrig wrote: > I have been trying to register for several days now, double checking the > spam folder, but still not get an response, any idea. > Are you receiving messages now? I just moderated your messages through, and set it so that all your futur

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Jeremy Thomerson
Session.setStyle("mobile") On Tue, Aug 10, 2010 at 8:55 AM, Josh Kamau wrote: > Thanks Jeremy. > Am just wondering, how will the application know which template to pick? > > regards > Joshua > > On Tue, Aug 10, 2010 at 4:15 PM, Jeremy Thomerson < > jer...@wickettraining.com > > wrote: > > > Use

jsr 286 inter-portlet communication

2010-08-10 Thread dgh1
I read in the PortletsInAction manning book that for wicket that inter-portlet communications is not in 1.4.x but will be in 1.5. Can somebody please verify that the jsr 286 nter-portlet communications will be in 1.5 and if not when might it be. Thanks -- View this message in context: http:

can not register

2010-08-10 Thread Dale Herrig
I have been trying to register for several days now, double checking the spam folder, but still not get an response, any idea.

Re: any good ideas about how to add a confirm check before leaving a page?

2010-08-10 Thread Rodolfo Hansen
On Tue, 2010-08-10 at 16:08 +0200, Leszek Gawron wrote: > On 2010-08-10 15:11, Joe Hudson wrote: > > Thank you very much for the response but my issue is not a simple as > > this > > > > Say I have a page with navigation links and the page doesn't "know" about > > the navigation links becaus

Re: robots.txt

2010-08-10 Thread Per Lundholm
WicketApplication.mountBookmarkablePage(String path, Class page)? /Per On Mon, Aug 9, 2010 at 5:42 PM, Sefa Irken wrote: > Thank you everyone, that works. > > But a bit of curiosity, is there a wicket or servlet way? More clearly, how > can a singe file mounted to a single url ? like  /bob/stati

Re: any good ideas about how to add a confirm check before leaving a page?

2010-08-10 Thread Leszek Gawron
On 2010-08-10 15:11, Joe Hudson wrote: Thank you very much for the response but my issue is not a simple as this Say I have a page with navigation links and the page doesn't "know" about the navigation links because they are controlled by functionality provided in the superclass. What I a

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Josh Kamau
Thanks Jeremy. Am just wondering, how will the application know which template to pick? regards Joshua On Tue, Aug 10, 2010 at 4:15 PM, Jeremy Thomerson wrote: > Use Wicket's style for the templates and you'll have two sets of html > files, > like foopage.html and foopage_mobile.html. > > Jerem

Re: reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Jeremy Thomerson
Use Wicket's style for the templates and you'll have two sets of html files, like foopage.html and foopage_mobile.html. Jeremy Thomerson http://wickettraining.com -- sent from my "smart" phone, so please excuse spelling, formatting, or compiler errors On Aug 10, 2010 2:10 AM, "Josh Kamau" wrote:

RE: any good ideas about how to add a confirm check before leaving a page?

2010-08-10 Thread Joe Hudson
Thank you very much for the response but my issue is not a simple as this Say I have a page with navigation links and the page doesn't "know" about the navigation links because they are controlled by functionality provided in the superclass. What I am trying to do is deal with the case wher

Re: Ajax-Panel Toggling Visibility

2010-08-10 Thread Nivedan Nadaraj
Hi The List View is being refreshed now. I have made couple of iterations and have pretty much lost track of how I went about. But, one of the things I did was add an anonymous class in my Search panel as ar LoadableDetachableModel and in the load() I return a list from the CompoundPropertyModel i

Re: DataView/LoadableDetachableModel/onClick

2010-08-10 Thread Leszek Gawron
On 2010-08-09 18:18, Igor Vaynberg wrote: it is not recommended to pass models between pages because if the model is anonymous it can carry with it a reference to the other page object and your session size will spike because your page also has a reference to the previous page. so no, it shouldn

reusing clientside code for desktop and mobile screens.

2010-08-10 Thread Josh Kamau
Hello team; I am creating an application that will be accessible via desktop and via the mobile devices. I understand i can have the same java code and different html templates for mobile and desktop. My question is how to i do this. How do i make separate templates that will be used when the devi