Checkboxes and defaultdatatable

2010-04-14 Thread Sigmar Muuga
Hello, can anybody say, which is the most hazzle-free way to do default datatable with multiple selectboxes? I created FilterForm with DefaultDatatable. In that table I have a checkbox column to select items. I followed the PhoneBook example but now I it is acting weirdly and I dont understand,

Re: Job opportunities (Netherlands)?

2010-04-14 Thread Martijn Dashorst
The grandparent has a point: having a jobs forum/list might be helpful as not many folks are eager to send their job postings to the user list. Not having a jobs related list might hinder the publicity for companies having and engineers seeking job opportunities. The ASF has a jobs list, but it

Re: Wicket And GAE

2010-04-14 Thread Martijn Dashorst
On Tue, Apr 13, 2010 at 6:12 PM, marc fawzi marc.fa...@gmail.com wrote: Is there an IRC channel for Wicket users or is this the best place for newbies like me to post questions and get help? Both. ##wicket on freenode.net is the official wicket IRC channel, and you're welcome to ask and answer

MarkupComponentBorder and deprecation

2010-04-14 Thread Antoine van Wel
Hi, quick question: since IComponentBorder and Component.setComponentBorder are deprecated, how should I use MarkupComponentBorder - or shouldn't I use that at all? You can't attach a markup file to a behavior, right? Antoine

Re: AW: Fading Content Updates Into a Ajax Refreshing ListView

2010-04-14 Thread Ayodeji Aladejebi
Thanks igor On Tue, Apr 13, 2010 at 3:08 PM, DaHe danielavalero...@gmail.com wrote: That was very very hepfull !!! Thanks! =) igor.vaynberg wrote: see here http://wicketinaction.com/2008/10/repainting-only-newly-created-repeater-items-via-ajax/ this will get you most of

DropDownList

2010-04-14 Thread Josh Kamau
Hi team; Please tell me , how do i change the Choose One text on the drop down list to something else? regards; Josh

Re: DropDownList

2010-04-14 Thread Major Péter
http://lmgtfy.com/?q=wicket+change+choose+one+text 2010-04-14 14:00 keltezéssel, Josh Kamau írta: Hi team; Please tell me , how do i change the Choose One text on the drop down list to something else? regards; Josh -

Re: DropDownList

2010-04-14 Thread Robert Kimotho
Override getDefaultChoice() as in the following code:- @Override protected CharSequence getDefaultChoice(Object selected) { return option value=\\your header/option; } On Wed, Apr 14, 2010 at 3:00 PM, Josh Kamau joshnet2...@gmail.com

Re: DropDownList

2010-04-14 Thread Josh Kamau
Thanks robert, major.. It worked. regards Josh 2010/4/14 Major Péter majorpe...@sch.bme.hu http://lmgtfy.com/?q=wicket+change+choose+one+text 2010-04-14 14:00 keltezéssel, Josh Kamau írta: Hi team; Please tell me , how do i change the Choose One text on the drop down list to

Re: Wicket And GAE

2010-04-14 Thread jbrookover
Per #1, the GAE people highly discourage pinging to keep the instance alive. Also, I tried it for a bit anyways, and it didn't help. I get instance restarts in the MIDDLE of page loads (hint hint: I could use help on my other post!). The thing to realize with GAE is that you need to keep

Wicket Wiki

2010-04-14 Thread Jeffrey Schneller
Any ideas on when the Wicket Wiki will be back up? http://cwiki.apache.org/WICKET Thanks.

attaching a border to a component instead of vice versa - how?

2010-04-14 Thread Antoine van Wel
Hi, is it possible to somehow attach a border to a component? I.e. currently afaik you have to do this in markup when using a border: div wicket:id=border span wicket:id=component/ /div and in the code something like: add(new Border(border) .add(new Component(component)) Instead

Re: Wicket And GAE

2010-04-14 Thread marc fawzi
Per #1, the GAE people highly discourage pinging to keep the instance alive. Also, I tried it for a bit anyways, and it didn't help. I get instance restarts in the MIDDLE of page loads (hint hint: I could use help on my other post!). The thing to realize with GAE is that you need to keep

Senior Java Developer Role, £300-500 a day, Bristol!

2010-04-14 Thread Matt Williams
Hi guys, Apologies in advance to anyone I have already contacted with regards to this role or if it has no relevance to you. My client are urgently seeking a Senior Java Developer with excellent Wicket knowledge to join their team on a 3 month contract in Bristol, UK. They will pay the

Newbie Question about populating form values

2010-04-14 Thread David Hamilton
I'm a new Wicket using trying to figure out how to populate a form's initial value with data from a bean (that is in the session already). I've actually got it working, but I don't think I'm doing the best way. public final class EmployeeMain extends BasePage { public EmployeeMain() {

Type Inference for Wicket 1.4

2010-04-14 Thread James Perry
I am looking to migrate from Wicket 1.3 and Wicket 1.4 and I really like the type-safe goodies but I do not like its verbosity. I was thinking of writing a patch that provides factories to improve the brevity by type inference of the generic invariant. This is an example of my idea:

Re: MarkupComponentBorder and deprecation

2010-04-14 Thread Igor Vaynberg
no, you cant attach markup to behavior but you can create an equivalent of MarkupComponentBorder using a behavior. -igor On Wed, Apr 14, 2010 at 1:40 AM, Antoine van Wel antoine.van@gmail.com wrote: Hi, quick question: since IComponentBorder and Component.setComponentBorder are

Re: Type Inference for Wicket 1.4

2010-04-14 Thread Igor Vaynberg
you are going to have one factory method for each constructor, its going to be a pita to maintain. not something we will want in core. -igor On Wed, Apr 14, 2010 at 8:51 AM, James Perry james.austin.pe...@gmail.com wrote: I am looking to migrate from Wicket 1.3 and Wicket 1.4 and I really like

Re: Newbie Question about populating form values

2010-04-14 Thread Nikita Tovstoles
If you're using a CPM there's no need to explicitly set models for child components. Also think about what you want to happen on page reload. Generally I'd imagine you want current data, so set CPM's object on Page.onBeforeRender(): public class EmployeeMain extends BasePage{ final private

Re: Newbie Question about populating form values

2010-04-14 Thread James Carman
Why not use a LoadableDetachableModel instead of setting on onBeforeRender()? On Wed, Apr 14, 2010 at 12:10 PM, Nikita Tovstoles nikita.tovsto...@gmail.com wrote: If you're using a CPM there's no need to explicitly set models  for child components. Also think about what you want to happen on

Re: Question on close button of modal windows

2010-04-14 Thread Konstantin Stepanyuk
Could somebody please help me with this question? I think that this is very important bug-o-feature Konstantin Stepanyuk wrote: Hi all, Thanks for your great product! I have a question (or feature request) regarding the close button. There is default closing button ('X') on each Wicket

Re: How to pass object as parameter to popup window

2010-04-14 Thread Iain Reddick
The data you want to show on the page is transient, so it isn't really bookmarkable. Use a regular Link and give the page class a constructor that takes your DTO. Mathias Nilsson wrote: Session or pageParameters - To

MixedParamUrlCodingStrategy parameters encoding/decoding

2010-04-14 Thread Mikhail Fursov
Hi All, While browsing wicket MixedParamUrlCodingStrategy class sources I found that parameter encoding is done using 2 encoders: path query encoders, while during decoding stage only 1 decoder is used (path). Just wondering if this is a bug or not? -- Mikhail Fursov

Re: Question on close button of modal windows

2010-04-14 Thread Daniela Valero
You could do it with JQuery directly, or implement WiQuery dialog. 2010/4/14 Konstantin Stepanyuk cons...@unipro.ru Could somebody please help me with this question? I think that this is very important bug-o-feature Konstantin Stepanyuk wrote: Hi all, Thanks for your great product!

Re: Newbie Question about populating form values

2010-04-14 Thread Nikita Tovstoles
Yeah, guess you could do that too, but then you'd have to wrap one model into another (since LDM does not do property matching like CPM) + you've to extend LDM. On Wed, Apr 14, 2010 at 9:24 AM, James Carman jcar...@carmanconsulting.comwrote: Why not use a LoadableDetachableModel instead of

Re: Job opportunities (Netherlands)?

2010-04-14 Thread nino martinez wael
If people want to, they can just join the Apache Wicket list on linkedin.com , theres over 600 members in that group.. Although it might not be as big as the Apche Wicket forum, it can't be more direct as linkedin are for jobs :) I personally like the list to be about anything wicket including

Re: Newbie Question about populating form values

2010-04-14 Thread James Carman
That's one of the key concepts of Wicket models. On Wed, Apr 14, 2010 at 2:04 PM, Nikita Tovstoles nikita.tovsto...@gmail.com wrote: Yeah, guess you could do that too, but then you'd have to wrap one model into another (since LDM does not do property matching like CPM) + you've to extend LDM.

Re: Senior Java Developer Role, £300-500 a day, Bri stol!

2010-04-14 Thread Rodolfo Hansen
Hi, the position seems interesting enough, attached is my CV. I am currently located in the Caribbean, but am willing to move. On Wed, Apr 14, 2010 at 11:29 AM, Matt Williams matthewwilli...@peoplesource.co.uk wrote: Hi guys, Apologies in advance to anyone I have already contacted with

change the resources folder location

2010-04-14 Thread Daniela Valero
Hi everybody Is there a way to load JS resources from another location using the ResourseReference or its childs? ie: WebContent/views/js/ ? -- | Daniela Valero No hay vientos favorables para quien no sabe a donde quiere ir!

Re: http://cwiki.apache.org/WICKET is down

2010-04-14 Thread l yeung
I wasn't able to access the wiki pages since sunday. I had to look at google cached pages instead On Apr 15, 2010 8:27 AM, Carl Sziebert car...@gmail.com wrote: Any updates on when the reference site will be available again? On Sat, Apr 10, 2010 at 11:02 AM, Brian Topping topp...@codehaus.org

Re: http://cwiki.apache.org/WICKET is down

2010-04-14 Thread Sigmar Muuga
Yeah, same here. Google cache helped me out too :) Sigmar On Thu, Apr 15, 2010 at 2:45 AM, l yeung lenming.ye...@gmail.com wrote: I wasn't able to access the wiki pages since sunday. I had to look at google cached pages instead On Apr 15, 2010 8:27 AM, Carl Sziebert car...@gmail.com wrote: