wicket url links

2008-06-11 Thread i ii
wicket 1.2 has component#forUrl(). what to use in 1.3? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: wicket url links

2008-06-11 Thread i ii
no answer? From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: wicket url links Date: Wed, 11 Jun 2008 10:59:22 + wicket 1.2 has component#forUrl(). what to use in 1.3? - To unsubscribe, e-mail: [EMAIL

RE: wicket url links

2008-06-11 Thread i ii
as this... Anyway, is component#urlFor() what you're looking for? What 1.2 version were you using, as 1.2.6 has the above but no component#forUrl()? /Gwyn On Wed, Jun 11, 2008 at 4:34 PM, i ii wrote: no answer? From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: wicket url links Date

RE: wicket url links

2008-06-11 Thread i ii
thank you Date: Wed, 11 Jun 2008 09:49:01 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: wicket url links wicket 1.2 has component#forUrl(). what to use in 1.3? urlFor(Component) (can also be found on RequestCycle). Eelco

refreshingview with textfield items that use validatior

2008-05-22 Thread i ii
how can use refreshingview with textfield items that use validatior? when i use and validator fails all textfield values reset. i want reset every request, but not when validator fails. - To unsubscribe, e-mail: [EMAIL

RE: refreshingview with textfield items that use validatior

2008-05-22 Thread i ii
: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: refreshingview with textfield items that use validatior see setitemreusestrategy, there is also an example in wicketstuff.org/wicket13/repeater -igor On Thu, May 22, 2008 at 5:43 AM, i ii [EMAIL PROTECTED] wrote: how can

RE: refreshingview with textfield items that use validatior

2008-05-22 Thread i ii
that use validatior see setitemreusestrategy, there is also an example in wicketstuff.org/wicket13/repeater -igor On Thu, May 22, 2008 at 5:43 AM, i ii [EMAIL PROTECTED] wrote: how can use refreshingview with textfield items that use validatior? when i use and validator

ajax progress indicator

2008-05-02 Thread i ii
is documentation available for ajax progess indicator. i cannot find :(

RE: ajax progress indicator

2008-05-02 Thread i ii
getAjaxIndicatorMarkupId() { return indicatorContainer.getMarkupId(); } }; loginForm.add(loginButton); } 2008/5/2 i ii [EMAIL PROTECTED]: is documentation available for ajax progess indicator. i cannot find

RE: image resource

2008-04-25 Thread i ii
protected void onComponentTag(final ComponentTag tag){ super.onComponentTag(tag); tag.put(src, http://www.someothersite.com/image.gif;); } }; On Thu, Apr 24, 2008 at 11:47 AM, i ii [EMAIL PROTECTED] wrote: how to get image src from

image resource

2008-04-24 Thread i ii
how to get image src from other site? i need to update image based on user input // does not work new Image(wicketId, new Model(http://www.someothersite.com/image.gif;));

multiple DropDownChoice

2008-04-20 Thread i ii
is example available for multiple DropDownChoice where one menu changes value in other? i look at http://wicketstuff.org/wicket13/ but see no example

RE: multiple DropDownChoice

2008-04-20 Thread i ii
thank you Date: Sun, 20 Apr 2008 21:32:48 +0200 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: multiple DropDownChoice http://wicketstuff.org/wicket13/ajax/choice On Sun, Apr 20, 2008 at 6:19 PM, i ii [EMAIL PROTECTED] wrote: is example available for multiple

RE: StringResourceModel with unknown array parameters

2008-04-19 Thread i ii
i come up with easy solution. thanks for help: .properties attendees.names=All attendees include: {0} webpage // example list, but do not know size of list at all times ListString attendees = new ArrayListString(); attendees.add(Attendee 1); attendees.add(Attendee 2); attendees.add(Attendee

StringResourceModel with unknown array parameters

2008-04-18 Thread i ii
is way to add StringResourceModel with array of unknown size? .properties attendees.names=All attendees include: {0} webpage // example list, but do not know size of list at all times ListString attendees = new ArrayListString(); attendees.add(Attendee 1); attendees.add(Attendee 2);

RE: StringResourceModel with unknown array parameters

2008-04-18 Thread i ii
should be in core, no? Date: Fri, 18 Apr 2008 09:22:12 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: StringResourceModel with unknown array parameters On Fri, Apr 18, 2008 at 8:49 AM, Enrique Rodriguez [EMAIL PROTECTED] wrote: ... Cool, I just had to do

should DataView.setItemsPerPage(int items) be in IDataProvider?

2008-04-03 Thread i ii
when i need to get items per page in data provider i cannot unless i have data view. should this method be in data provider and not data view? the data provider is providing data and items per page is data, no?

RE: should DataView.setItemsPerPage(int items) be in IDataProvider?

2008-04-03 Thread i ii
per page. Martijn On 4/3/08, i ii [EMAIL PROTECTED] wrote: when i need to get items per page in data provider i cannot unless i have data view. should this method be in data provider and not data view? the data provider is providing data and items per page is data, no? -- Buy

RE: should DataView.setItemsPerPage(int items) be in IDataProvider?

2008-04-03 Thread i ii
On Thu, Apr 3, 2008 at 6:29 AM, i ii [EMAIL PROTECTED] wrote: but what if items per page is needed not in iterator? Date: Thu, 3 Apr 2008 15:08:27 +0200 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: should DataView.setItemsPerPage(int items

RE: RadioGroup in TD

2008-03-20 Thread i ii
? Date: Wed, 19 Mar 2008 12:31:24 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TD you would have one RadioGroup around the table and Radio inside td -igor On Wed, Mar 19, 2008 at 11:28 AM, i ii [EMAIL PROTECTED] wrote

RadioGroup in TD

2008-03-19 Thread i ii
how can i use RadioGroup or RadioChoice when radios are in TD? i try to use Radio on its own with same name attribute, but cannot. it says Radio must be inside RadioGroup? - To unsubscribe, e-mail: [EMAIL PROTECTED]

RE: RadioGroup in TD

2008-03-19 Thread i ii
i tried to add html: table gth; td gth; input wicket:id=rd1 type=radio / gth; /td gth; td gth; input wicket:id=rd2 type=radio / gth; /td gth; /table gth; From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: RadioGroup in TD Date: Wed, 19 Mar 2008 18:16:26 +

RE: RadioGroup in TD

2008-03-19 Thread i ii
, 2008 at 11:20 AM, i ii [EMAIL PROTECTED] wrote: i tried to add html: table gth; td gth; input wicket:id=rd1 type=radio / gth; /td gth; td gth; input wicket:id=rd2 type=radio / gth; /td gth; /table gth; From: [EMAIL PROTECTED] To: users@wicket.apache.org

RE: RadioGroup in TD

2008-03-19 Thread i ii
in different TD? i would put RadioGroup around RadioGroup? Date: Wed, 19 Mar 2008 11:22:02 -0700 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: RadioGroup in TDput radiogroup around the table -igor On Wed, Mar 19, 2008 at 11:20 AM, i ii [EMAIL PROTECTED] wrote

RE: RadioGroup in TD

2008-03-19 Thread i ii
around the table and Radio inside td -igor On Wed, Mar 19, 2008 at 11:28 AM, i ii [EMAIL PROTECTED] wrote: will that work with more than one RadioGroup in different TD? i would put RadioGroup around RadioGroup? Date: Wed, 19 Mar 2008 11:22:02 -0700 From: [EMAIL PROTECTED

RE: StringResourceModel labels within values

2008-03-13 Thread i ii
On Wed, Mar 12, 2008 at 1:44 PM, Johan Compagner [EMAIL PROTECTED] wrote: I think if you just give SRM a model that again gets the values from the localizer then it should work fine. On 3/12/08, i ii [EMAIL PROTECTED] wrote: is there way to do something like

RE: StringResourceModel labels within values

2008-03-13 Thread i ii
: PropertyVariableInterpolator.interpolate(value, modelObject); You can use that to build a model that recursively interpolates until there are no more ${...} occurrences in the value. Regards, Sebastiaan i ii wrote: thank you for help! which way is better? my own component or srm model that gets from localizer

StringResourceModel labels within values

2008-03-12 Thread i ii
is there way to do something like: .properties file: some.label=Some Label some.text=Some Text some.key=This text will have ${some.label} and ${some.text}

RE: Javascript not evaluating with AbstractAutoCompleteBehavior

2008-03-08 Thread i ii
that does suck! why would wicket use a different pipeline??? that is misleading!!! Date: Sat, 8 Mar 2008 00:21:26 -0800 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: Javascript not evaluating with AbstractAutoCompleteBehavior Oh, that sucks. That's VERY misleading

[no subject]

2008-02-27 Thread i ii
Struts2 claims that Actions are HTTP independent and framework neutral. This enables to test struts applications very easily without resorting to mock objects. Can this be done in Wicket?

Alternative to WicketTester?

2008-02-27 Thread i ii
Struts2 claims that Actions are HTTP independent and framework neutral. This enables to test struts applications very easily without resorting to mock objects. Can this be done in Wicket?

Re: how to prevent session timeouts

2008-01-31 Thread i ii
im working on the same thing. how to make form stateless? 1 yes make the form in your login page a statelessform. 2 use a ajax poller. Just poll the server once in every x minutes johan On Feb 1, 2008 2:36 AM, Maris Orbidans [EMAIL PROTECTED] wrote: hi I have created a small web

RE: how to prevent session timeouts

2008-01-31 Thread i ii
i mean stateless page Date: Thu, 31 Jan 2008 18:00:58 +0100 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: how to prevent session timeouts StatelessForm ? On Jan 31, 2008 5:14 PM, i ii [EMAIL PROTECTED] wrote: im working on the same thing. how to make form

How can I use onComponentTag for a PasswordTextField?

2008-01-30 Thread i ii
how can i use onComponentTag for a PasswordTextField? method is final? i need to add dynamic javascript to onfocus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How can I use onComponentTag for a PasswordTextField?

2008-01-30 Thread i ii
+0100 From: [EMAIL PROTECTED] To: users@wicket.apache.org Subject: Re: How can I use onComponentTag for a PasswordTextField? you could use an AttributeModifier/AttributeAppender gerolf On Jan 30, 2008 11:42 PM, i ii wrote: how can i use onComponentTag for a PasswordTextField

RE: How can I use onComponentTag for a PasswordTextField?

2008-01-30 Thread i ii
I use onComponentTag for a PasswordTextField? On Jan 30, 2008 11:50 PM, i ii wrote: thank you for your fast reply. from what you said i found link.add(new AttributeAppender(onmouseover, new Model(foo();return false;), ;)); what benefit is to use AttributeAppender versus onComponentTag

is there way to use CryptedUrlWebRequestCodingStrategy for single page mount?

2008-01-30 Thread i ii
is there way to use CryptedUrlWebRequestCodingStrategy for single page mount? something like mount(new HybridUrlCodingStrategy(/somepath, SomeWebPage.class)); - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

JBoss Wasp/Swarm http 302

2008-01-19 Thread i ii
I'm using wicket 1.3 with jboss 4 and am trying to use a login page, but when i login i get a http 302. Any ideas why? POST /login?wicket:interface=:0:login-form::IFormSubmitListener:: HTTP/1.1 302 - To unsubscribe, e-mail: