Re: vps hosting for wicket app

2009-10-07 Thread Jan Kriesten
Hi Matej, I'm using slicehost but looking at this it just seems insane. Have you actually used this hosting? Is there a catch somewhere? I'm using it (3 root servers atm) - even for hosting high traffic customers. The bandwidth is amazing and there hasn't been any service problem since I'm on

Re: wicket bench 1.4

2009-10-07 Thread Luca Provenzani
i don't see difference between wicket1.3 and wicket1.4 with wicket bench. I like this plug-in, but it's still incoplete, and it has some little problems with java editor... Luca 2009/10/7 Douglas Ferguson doug...@douglasferguson.us Does wicket bench work with wicket 1.4?

Re: WARN [org.apache.wicket.protocol.http.WebResponse] - redirect to ?wicket:interface=:5:::: failed: null

2009-10-07 Thread Eyal Golan
Hi Jeremy, Below is the stack trace: Thread [btpool0-0] (Suspended (breakpoint at line 238 in WebResponse)) BufferedWebResponse(WebResponse).redirect(String) line: 238 BufferedWebResponse.close() line: 66 WicketFilter.doGet(HttpServletRequest, HttpServletResponse) line: 372

Re: WARN [org.apache.wicket.protocol.http.WebResponse] - redirect to ?wicket:interface=:5:::: failed: null

2009-10-07 Thread Eyal Golan
BTW, the 'null' is the message of the exception. Looking at the exception in the break-point: the exception is: org.mortbay.jetty.EofException thanks. Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please

AW: How do you achieve persistency

2009-10-07 Thread Peter Arnulf Lustig
Great piece of software! But how did you manage to replace the web.xml filterclass into: filter-classorg.apache.cayenne.conf.WebApplicationContextFilter/filter-class when Wicket needs its own filter class filter-classorg.apache.wicket.protocol.http.WicketFilter/filter-class -

Re: Ajax-Response xml to browser - DatePicker

2009-10-07 Thread Douglas Ferguson
Bump On Oct 6, 2009, at 9:20 PM, Douglas Ferguson wrote: Has anybody seen this before? On Oct 6, 2009, at 2:13 AM, Douglas Ferguson wrote: I'm seeing something really strange. I'm using DatePicker and sometimes when I click on it. I get a temporary screen that has the following text:

Re: wicket bench 1.4

2009-10-07 Thread Douglas Ferguson
I'm interested in using the selenium features. D/ On Oct 7, 2009, at 2:01 AM, Luca Provenzani wrote: i don't see difference between wicket1.3 and wicket1.4 with wicket bench. I like this plug-in, but it's still incoplete, and it has some little problems with java editor... Luca

Re: How do you achieve persistency

2009-10-07 Thread Olivier Bourgeois
Why would you replace the Wicket filter ? You can have multiple filters defined in your web.xml , they are chained by your application server. 2009/10/7 Peter Arnulf Lustig u...@yahoo.de Great piece of software! But how did you manage to replace the web.xml filterclass into:

Re: iPhone webapp support?

2009-10-07 Thread Edmund Urbani
Lionel Armanet wrote: Hi, Maybe you should take a look at jqTouch (http://www.jqtouch.com/) which is a jQuery plugin dedicated to use rich effects of safari on iPhone. You might want to use wiQuery (http://code.google.com/p/wiquery) ton bind this jQuery plugin with your wicket

Re: wicket bench 1.4

2009-10-07 Thread Luca Provenzani
in this case i don't know, because i don't use selenium... ;-) Luca 2009/10/7 Douglas Ferguson doug...@douglasferguson.us I'm interested in using the selenium features. D/ On Oct 7, 2009, at 2:01 AM, Luca Provenzani wrote: i don't see difference between wicket1.3 and wicket1.4 with

Re: Ajax-Response xml to browser - DatePicker

2009-10-07 Thread Douglas Ferguson
I figured it out. There are two DateTextFields. One is in the org.apache.wicket.datetime.markup.html.form package and the other is in the org.apache.wicket.extensions.markup.html.form package. The datetime version is causing the problem. It is now working using the extensions version. D/ On

AW: How do you achieve persistency

2009-10-07 Thread Peter Arnulf Lustig
Cayenne needs his own filter. - Ursprüngliche Mail Von: Olivier Bourgeois olivier.bourgeois@gmail.com An: users@wicket.apache.org Gesendet: Mittwoch, den 7. Oktober 2009, 10:10:00 Uhr Betreff: Re: How do you achieve persistency Why would you replace the Wicket filter ? You can

Re: How do you achieve persistency

2009-10-07 Thread James Perry
Interesting, but how would you provide transactional isolation so you do not experience phantom or dirty reads? 2009/10/6 Igor Vaynberg igor.vaynb...@gmail.com i think all the suggestions you have gotten until now are overcomplicated and have a high learning curve. i think the easiest and

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread jWeekend
Igor, Are you bringing your video-recorder? We'll get you over here sooner or later, maybe for our 3rd year anniversary event in the Summer! Several people have tried to help us with this, but so far the results have not been good enough (really!). We've even knocked-up a special app to publish

custom resolving of relative paths in head section of panel

2009-10-07 Thread Ittay Dror
Hi, Is there a way in which I can convert javascript/css relative references in a wicket:head of a panel and add a prefix to them? Regards, Ittay - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ernesto Reinaldo Barreiro
Not quite following you... What do you mean? Something like: a.myClass { background: url('${myURL}'); } and get ${myURL} replaced? Best, Ernesto On Wed, Oct 7, 2009 at 12:55 PM, Ittay Dror itt...@tikalk.com wrote: Hi, Is there a way in which I can convert javascript/css relative

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Ioannis Mavroukakis
I've got a handheld video recorder I might be able to borrow off of a friend..don't know if it will last for 6 hours though!! On 7 Oct 2009, at 11:42, jWeekend wrote: Igor, Are you bringing your video-recorder? We'll get you over here sooner or later, maybe for our 3rd year anniversary

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ittay Dror
In the panel's html i have something like: script type=text/javascript src=./js/application.js/script This works well when the html is viewed as standalone. but in the context of the application i need the tag to be rendered as: script type=text/javascript

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ernesto Reinaldo Barreiro
You could do public class MyPanel extends Panel { public static ResourceReference CSS = new ResourceReference(MyPanel.class, mycss.css); public MyPanel(String id) { add(CSSPackageResource.getHeaderContribution(CSS )); } } Similar for JavaScript with

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Pedro Santos
Hi Ittay, you can use wicket:link tag to resolve that path dynamically too. head wicket:head wicket:link script type=text/javascript src=./js/application.js/script /wicket:link /wicket:head /head that way you keep the reference valid whe html is viewed as standalone, and in the context of the

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ernesto Reinaldo Barreiro
That's one of the good things about this list: you try to answer a question and you end up learning something new:-) Thanks, Ernesto On Wed, Oct 7, 2009 at 1:30 PM, Pedro Santos pedros...@gmail.com wrote: Hi Ittay, you can use wicket:link tag to resolve that path dynamically too. head

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ittay Dror
Pedro Santos wrote: Hi Ittay, you can use wicket:link tag to resolve that path dynamically too. head wicket:head wicket:link script type=text/javascript src=./js/application.js/script /wicket:link /wicket:head /head that way you keep the reference valid whe html is viewed as standalone, and

how to get TextField value which belongs to the first tab when click on the button which belongs to tabbedpanel

2009-10-07 Thread jerryws
There are 3 tabs in a tabbedpanel, a TextField component is in the first tab, and several form components in the other tabs for user input. I added a save button in the tabbedpanel(instead add 3 buttons in each tab, because I just want to save all user inputs by one click), my question is, how

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Pedro Santos
sorry, I miss that that tag will handle the 'href' attribute, the script tag has 'src' On Wed, Oct 7, 2009 at 8:58 AM, Ittay Dror itt...@tikalk.com wrote: Pedro Santos wrote: Hi Ittay, you can use wicket:link tag to resolve that path dynamically too. head wicket:head wicket:link

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ernesto Reinaldo Barreiro
This solution will work for sure... and additionally you could have the markup of MyPanel html head script type=text/javascript src=./js/application.js/script /head body wicket:panel . /wicket:panel /body /html So that you cant test it offline and have it working when used dynamically.

Re: how to get TextField value which belongs to the first tab when click on the button which belongs to tabbedpanel

2009-10-07 Thread Pedro Santos
It is up to your object structure, use wicket api to get such object reference sounds bad On Wed, Oct 7, 2009 at 6:43 AM, jerr...@sohu.com wrote: There are 3 tabs in a tabbedpanel, a TextField component is in the first tab, and several form components in the other tabs for user input. I added

Re: how to get TextField value which belongs to the first tab when click on the button which belongs to tabbedpanel

2009-10-07 Thread Swanthe Lindgren
jerr...@sohu.com wrote: There are 3 tabs in a tabbedpanel, a TextField component is in the first tab, and several form components in the other tabs for user input. I added a save button in the tabbedpanel(instead add 3 buttons in each tab, because I just want to save all user inputs by one

Re: How do you achieve persistency

2009-10-07 Thread Olivier Bourgeois
It's not a problem, you can have multiple filters, they will be called in sequence when you hit an URL that matches your filter-mapping. Example for spring-security : filter filter-namespringSecurityFilterChain/filter-name

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Ittay Dror
Ernesto Reinaldo Barreiro wrote: This solution will work for sure... and additionally you could have the markup of MyPanel html head script type=text/javascript src=./js/application.js/script /head body wicket:panel . /wicket:panel /body /html So that you cant test it offline and have

Re: custom resolving of relative paths in head section of panel

2009-10-07 Thread Pedro Santos
script type=text/javascript src=./js/application.js/script This works well when the html is viewed as standalone. but in the context of the application i need the tag to be rendered as: script type=text/javascript src=prefix/js/application.js/script I think that is the case to use: head script

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Matej Knopp
Hey! My first london wicket event. Certainly looking forward to that. -Matej On Tue, Oct 6, 2009 at 3:10 PM, jWeekend jweekend_for...@cabouge.com wrote: Our next London Wicket Event will be held on Saturday, November 21st. This is going to be quite some event again, with Matej Knopp (SVK),

Re: how to get TextField value which belongs to the first tab when click on the button which belongs to tabbedpanel

2009-10-07 Thread Michael O'Cleirigh
Hi Jerry, Your implementation isn't working because: 1. tabs have to be contained with in the form to be part of the submission: form wicket:id=form div wicket:id=tabs[tabbed panel will be here]/div input wicket:id=buttonsave

AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread zabian
Hi, I want to add self-updating panel which displays some nested properties ie. two coordinates (x,y - let's say the Point class object). The point is updated by ejb or webservice. I tried to use the example from wicket-examples page - clock using AjaxSelfUpdatingBehavior. But example case

Re: vps hosting for wicket app

2009-10-07 Thread david
Hello Luther, I was very much impressed by David's article. A very nice presentation of numbers and charts. Unfortunately, I know it is Xen hypervisor and cloud computing and all the fancy technogeek but I have to dumb-it-down and ask how useful is 360MB of memory? Is it safe to say 500MB of

Re: vps hosting for wicket app

2009-10-07 Thread Jeremy Thomerson
The original request was for deploy a wicket app for alpha and beta testing at a minimum price which means that it doesn't need to scale to racks and racks of servers. The subject line also asks about VPS which I assume to still mean virtual private server. That's why but Luther and I gave

Re: WARN [org.apache.wicket.protocol.http.WebResponse] - redirect to ?wicket:interface=:5:::: failed: null

2009-10-07 Thread Jeremy Thomerson
Well, it's hard to say. When you include a stack trace for an error, it's helpful if you can get the full stack trace (with the exception and caused by) because I can't tell which line actually put you into the catch. But it seems like something is closing your response before you get to this

Re: Client-side treeView

2009-10-07 Thread PaulH98
jWeekend wrote: Paul, Take a look at Alastair's presenttaion called something like A Drag And Drop List Editor [1] and the accompanying source code. I don't think we have a tree publicly available yet in WiQuery [2] but for sure you should get some good ideas there even if you don't

Scala, dependency injection and wicket

2009-10-07 Thread Haim Ashkenazi
Hi I've started a test project on which I use scala, wicket and couchdb (I'm new to all of them, which should make it fun :) ). Until now I was dealing with the writing sample data access code, and I was reading a lot of articles about DI in scala. I more or less went with what is suggested in

Re: AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread Michael O'Cleirigh
Hi Wojtek, Create a panel that contains the setup to present the properties of your Point class. Add the 'AjaxSelfUpdatingTimerBehavior' to the panel. So long as the PointPanel is setup properly using an IModelPoint implementation that knows how to populate itself and the nested fields

Re: Scala, dependency injection and wicket

2009-10-07 Thread Jan Kriesten
Hi Haim, I think you read the article from Jonas Bonér about DI with Scala [1]? In the paragraph about Guice you'll stumble over my name and my preferred way to DI with Wicket. Best regards, --- Jan. [1] http://jonasboner.com/2008/10/06/real-world-scala-dependency-injection-di.html

Re: Client-side treeView

2009-10-07 Thread PaulH98
Michael O'Cleirigh wrote: Hi Paul, Most of the wicket + javascript integrations in wicket-stuff (http://wicketstuff.org/confluence/display/STUFFWIKI/Wiki) will show how communication between wicket and javascript can work. They can get a little messy but once implemented are

Re: AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread Jeremy Thomerson
AbstractReadOnlyModelPoint point = new AbstractReadOnlyModel() { ... return point from your service ... } PropertyModelDouble lat = new PropertyModelDouble(point, latitude); PropertyModelDouble lng = new PropertyModelDouble(point, longitude); Label latLabel = new Label(lat, lat); Label lngLabel =

Re: AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread Jeremy Thomerson
Oh, then just add the panel that contains those labels, or add the labels themselves, to the ajax response (target.addComponent) -- Jeremy Thomerson http://www.wickettraining.com On Wed, Oct 7, 2009 at 10:00 AM, Jeremy Thomerson jer...@wickettraining.com wrote: AbstractReadOnlyModelPoint

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Igor Vaynberg
until i see some video proof i will continue to operate under my assumption - there are no presentations, this is just an excuse to get out of the house and go to a pub :) -igor On Wed, Oct 7, 2009 at 3:42 AM, jWeekend jweekend_for...@cabouge.com wrote: Igor, Are you bringing your

Re: How do you achieve persistency

2009-10-07 Thread Igor Vaynberg
lock files :) -igor On Wed, Oct 7, 2009 at 3:27 AM, James Perry james.austin.pe...@gmail.com wrote: Interesting, but how would you provide transactional isolation so you do not experience phantom or dirty reads? 2009/10/6 Igor Vaynberg igor.vaynb...@gmail.com i think all the suggestions

Re: AjaxSelfUpdatingBehavior and nested values updating

2009-10-07 Thread zabian
Great, this is exactly what i need. I just didn't know how to convert one model to another or that you can get property of model object directly from model :) I appreciate your commitment. Regards, Wojtek Jeremy Thomerson pisze: AbstractReadOnlyModelPoint point = new

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Ioannis Mavroukakis
If my mate can't lend me his handheld, I'll see about perhaps renting something for the day... Y. On 7 Oct 2009, at 16:15, Igor Vaynberg wrote: until i see some video proof i will continue to operate under my assumption - there are no presentations, this is just an excuse to get out of the

Re: how to get TextField value which belongs to the first tab when click on the button which belongs to tabbedpanel

2009-10-07 Thread Igor Vaynberg
when dealing with tabs inside a form there are two options you can go with: a) the easiest is to use javascript tabs and have the entire form on a single html page. this works best imho. b) put the tabbed panel into a form, replace tabbed panel's links with submitlinks so switching tabs submits

Feedback messages, input and label

2009-10-07 Thread Tomás Rossi
Hi, lets say you have this in you html form: -- ... label for=pwdPassword/label input type=password id=pwd wicket:id=inputPwd/ ... -- Then, a properties file for your app with this: -- ... Required=Field ${label} is required! ... -- When the

no black point when click RadioChoice

2009-10-07 Thread jerryws
there are 6 options in a RadioChoice, when user selects different option, different containner will be displayed to user. In my understanding, when user clicks on the different option, it should display a black point to tell user which option he/she selects. But why there is no black point in

Re: Feedback messages, input and label

2009-10-07 Thread Olivier Bourgeois
Have you tried something like this in your page.java : pwd.setLabel(new ModelString(Password)); ? 2009/10/7 Tomás Rossi tro...@mecon.gov.ar Hi, lets say you have this in you html form: -- ... label for=pwdPassword/label input type=password id=pwd wicket:id=inputPwd/ ...

Re: How do you achieve persistency

2009-10-07 Thread dtoffe
This is an example of a requirement that often pops up where I work: let's say the system registers sales, there are an average 5K orders a day and each sale has an average 3 items. Items have a category. I'm required to produce a listing of daily sales grouped by category, with a daily

Storing entity object in session - how to do it?

2009-10-07 Thread Jeffrey Schneller
Looking through the archives I saw some posts that said you should not store entity objects [for example object coming from hibernate] in the session. This makes sense to me as I just hit the problem. The archives gave lots of advice but everything seemed to contradict and no one posted a

Re: How do you achieve persistency

2009-10-07 Thread Reinout van Schouwen
Op dinsdag 06-10-2009 om 03:12 uur [tijdzone -0700], schreef John Armstrong: I use Cayenne (http://cayenne.apache.org/). The GUI tool eliminates any requirement to deal with XML and maps all relationships for you. Interesting. I also use Cayenne (with Databinder, but I'm doubting more and more

Re: How do you achieve persistency

2009-10-07 Thread Igor Vaynberg
http://dictionary.reference.com/browse/facetious -igor On Wed, Oct 7, 2009 at 8:54 AM, dtoffe dto...@yahoo.com.ar wrote:    This is an example of a requirement that often pops up where I work: let's say the system registers sales, there are an average 5K orders a day and each sale has an

Re: How do you achieve persistency

2009-10-07 Thread dtoffe
o -- your joke O /|\-- me /\ I've read so long and unbelievable discussions regarding relational vs ORM persistence, I'm always afraid of asking... Cheers, Daniel igor.vaynberg wrote: http://dictionary.reference.com/browse/facetious -igor

Re: Feedback messages, input and label

2009-10-07 Thread Tomás Rossi
Yeah, it worked, thanks. Nonetheless, it'd be madness if I had to do that with every component of the system. Is this the only way? Couldn't this be done in a more automatic fashion, like for example, extracting it from the html label content which is associated to the input? Olivier

Re: vps hosting for wicket app

2009-10-07 Thread John Armstrong
I never found VPS to be cost effective (for my needs). For $100/month or so I have a core 2-duo dedicated box with 4GB RAM/120GB disk and 10mb/s throughput that can host 2-3 virtual machines of my own devising or just be a bare metal server. Lots more maintenance overhead but the flexibility,

Re: Storing entity object in session - how to do it?

2009-10-07 Thread Martin Makundi
We have (some key) entities (successfully) in Session. But they are not lazy-load entities so they act like plain-old-java-beans. ** Martin 2009/10/7 Jeffrey Schneller jeffrey.schnel...@envisa.com: Looking through the archives I saw some posts that said you should not store entity objects [for

Re: vps hosting for wicket app

2009-10-07 Thread Martin Makundi
Hosted vps might give you backup and fail-over very cost-effectively. ** Martin 2009/10/7 John Armstrong siber...@siberian.org: I never found VPS to be cost effective (for my needs). For $100/month or so I have a core 2-duo dedicated box with 4GB RAM/120GB disk and 10mb/s throughput that can

Re: Feedback messages, input and label

2009-10-07 Thread Igor Vaynberg
Nonetheless, it'd be madness no, this is spartaaa! form components search property files for their labels without you having to explicitly set a model. -igor if I had to do that with every component of the system. Is this the only way? Couldn't this be done in a more automatic fashion,

Re: Feedback messages, input and label

2009-10-07 Thread Matej Knopp
try putting inputPwd = Password in your property file. -Matej On Wed, Oct 7, 2009 at 5:33 PM, Tomás Rossi tro...@mecon.gov.ar wrote: Hi, lets say you have this in you html form: -- ... label for=pwdPassword/label input type=password id=pwd wicket:id=inputPwd/ ... --

Re: Scala, dependency injection and wicket

2009-10-07 Thread Haim Ashkenazi
Hi Jan, On Wed, Oct 7, 2009 at 4:59 PM, Jan Kriesten kries...@mail.footprint.dewrote: Hi Haim, I think you read the article from Jonas Bonér about DI with Scala [1]? yes of course :) In the paragraph about Guice you'll stumble over my name and my preferred way to DI with Wicket. Yes,

Re: Feedback messages, input and label

2009-10-07 Thread Tomás Rossi
Yeah, we'd need 300 programmers for that task ;) So you have to specify the label for each component in a property file? And then you'd have a property file for each markup that contains a form? Mmhh... Igor Vaynberg escribió: Nonetheless, it'd be madness no, this is spartaaa! form

Re: Feedback messages, input and label

2009-10-07 Thread Pedro Santos
Wicket is Sparta? http://www.mail-archive.com/wicket-u...@lists.sourceforge.net/msg17023.html On Wed, Oct 7, 2009 at 3:05 PM, Tomás Rossi tro...@mecon.gov.ar wrote: Yeah, we'd need 300 programmers for that task ;) So you have to specify the label for each component in a property file? And

Re: Feedback messages, input and label

2009-10-07 Thread Tomás Rossi
Ok, that's a little nicer, but still... It'd be better if the label could be deduced from the markup itself. Yet, no big deal. Thanks Matej Knopp escribió: try putting inputPwd = Password in your property file. -Matej On Wed, Oct 7, 2009 at 5:33 PM, Tomás Rossi tro...@mecon.gov.ar wrote:

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Nicolas Melendez
When a Wicket Event in Buenos Aires, Argentina ?? We also have lots of pubs :) On Wed, Oct 7, 2009 at 5:21 PM, Ioannis Mavroukakis imavrouka...@gameaccount.com wrote: If my mate can't lend me his handheld, I'll see about perhaps renting something for the day... Y. On 7 Oct 2009, at

artwork mootip conflict

2009-10-07 Thread vineet semwal
I can't say what exactly is causing problem but when i am using liquid canvas with mootip(minis) in a page, the liquid canvas fails to render .. -- regards, Vineet Semwal

Re: London Wicket Event, Saturday November 21st

2009-10-07 Thread Pedro Santos
Hi Nicolas, great idea On Wed, Oct 7, 2009 at 3:25 PM, Nicolas Melendez nmelen...@getsense.com.arwrote: When a Wicket Event in Buenos Aires, Argentina ?? We also have lots of pubs :) On Wed, Oct 7, 2009 at 5:21 PM, Ioannis Mavroukakis imavrouka...@gameaccount.com wrote: If my mate

problems validating Palette

2009-10-07 Thread Troy Cauble
I'm trying to validate that at most 5 items were selected with a Palette but I've had a series of problems. (Wicket 1.3.7) palette.getRecorderComponent().add(myCompValidator) fails because getRecorderComponent() returns null. I think it's created in onBeforeRender() So I switched to form

Re: Wicket Tree

2009-10-07 Thread Sven Meier
Hi, with wicket-tree you can of course use multiple trees on a single page. moving tree nodes around from one tree to another tree. How to you want to move the nodes? You could use selectable nodes which are moved on a button click. Or you add wicket-dnd to the mix and use dragdrop gestures.

Showing Modal window within a wizard step

2009-10-07 Thread Jeffrey Schneller
I am trying to show a modal window within a wizard step showing the same data the wizard step shows but as input text fields for editing. I have found some references to showing a wizard in a modal window and showing a wizard within a wizard but not what I am looking to do. I have the wizard

RE: Storing entity object in session - how to do it?

2009-10-07 Thread Jeffrey Schneller
Thanks. I took your suggestion and now just store the key pieces that I need in the session and it looks like it is working. -Original Message- From: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Sent: Wednesday, October 07, 2009 1:05 PM To: users@wicket.apache.org

Re: problems validating Palette

2009-10-07 Thread Igor Vaynberg
override newrecordercomponent() and add your validator there. -igor On Wed, Oct 7, 2009 at 11:56 AM, Troy Cauble troycau...@gmail.com wrote: I'm trying to validate that at most 5 items were selected with a Palette but I've had a series of problems.  (Wicket 1.3.7)

RE: Scala, dependency injection and wicket

2009-10-07 Thread Alex Rass
This is similar problem to one I'm trying to solve. Mine's: having several html files have the same java class controlling them. (sounds simple, right?) So far the only reasonable thing came from Martin and that's to override getAssociatedMarkupStream in your own Page class. Which also implies

Re: problems validating Palette

2009-10-07 Thread Troy Cauble
Thanks, That's a better place to attach validation. But it still leaves me working with a single String of comma separated selections. It makes me wonder if the underlying code can handle choices that contain commas. -troy On Wed, Oct 7, 2009 at 4:27 PM, Igor Vaynberg igor.vaynb...@gmail.com

Re: Scala, dependency injection and wicket

2009-10-07 Thread Haim Ashkenazi
Hi Alex, Wow, I just realized something... I've sent this to the wrong list :) I've meant to send it to the scala mailing list (this may explain why I explain the way wicket works). On Wed, Oct 7, 2009 at 10:42 PM, Alex Rass a...@itbsllc.com wrote: This is similar problem to one I'm trying to

Re: problems validating Palette

2009-10-07 Thread Troy Cauble
And a quick test shows that the underlying code CANNOT handle choices with commas in them. -troy On Wed, Oct 7, 2009 at 4:58 PM, Troy Cauble troycau...@gmail.com wrote: Thanks, That's a better place to attach validation. But it still leaves me working with a single String of comma separated

Re: Storing entity object in session - how to do it?

2009-10-07 Thread Marcelo Fukushima
cant you inject the DAO's to the listeners in the moment you create and attack the listeners to your application? If you have the Injector at that moment, you could even pull your listeners from the Injector, no? On Wed, Oct 7, 2009 at 5:21 PM, Jeffrey Schneller jeffrey.schnel...@envisa.com

Re: Storing entity object in session - how to do it?

2009-10-07 Thread Marcelo Fukushima
btw, im not actually suggesting you do that because keeping the key pieces in memory must be a lot faster than pulling from the DB for every component On Wed, Oct 7, 2009 at 7:34 PM, Marcelo Fukushima takesh...@gmail.com wrote: cant you inject the DAO's to the listeners in the moment you create

Perspective from fellow Wicketers on ColdFusion job oppty.

2009-10-07 Thread Jamie Swain
Hey guys, I know this is an unusual question for this list, but I was hoping that I could get some viewpoints and info about something. I recently interviewed for a job opportunity at a company that runs their core app, comprised of both web interface and web services, in a cool niche that I

Re: Perspective from fellow Wicketers on ColdFusion job oppty.

2009-10-07 Thread Jeremy Thomerson
Funny to hear that. In my professional (paid) web development career, I went from Perl to ColdFusion to Tapestry to Wicket. Of course, I've stuck with Wicket. But, I'm also now doing a little PHP (with Symfony framework - more on that later). I spent about five years working for a subsidiary

Re: Perspective from fellow Wicketers on ColdFusion job oppty.

2009-10-07 Thread Ben Tilford
It only gets worse the longer you work with ColdFusion. Where I work were finally working towards abandoning it completely. Some paint points: * No null value, you get a bunch of methods to check various types of objects to see if they are undefined * You can only specify return types of the core

RE: Perspective from fellow Wicketers on ColdFusion job oppty.

2009-10-07 Thread Jeffrey Schneller
I have used ColdFusion in the past for 2 different clients both using CFM pages with the markup and queries in the pages. Luckily at the end of the projects I knew I was done with them and moving on to something else. The 1st project I created from scratch so it was manageable at the start

Re: Scala, dependency injection and wicket

2009-10-07 Thread Jan Kriesten
Hi Haim, Yes, I remember seeing that. How would you add it to wicket? by adding ServiceInjector trait to the Application class or using the wicket-guice way (addComponentInstantiationListener(new GuiceComponentInjector(this));)? the Injector is just a trait, so anywhere it's needed, I just