Strip Wicket Tags but keep Wicket IDs

2010-06-21 Thread Baschir Jaghoori
Hi,

Does anyone know if it is possible to remove all Wicket Tags from output
but keep the wicket:id attribute?

Thanks
Baschir


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Need flot chart update

2010-06-21 Thread Misha

Hi! Please Update the js for the flot chart to version 0.6
(http://code.google.com/p/flot/downloads/detail?name=flot-0.6.zipcan=2q=)
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Need-flot-chart-update-tp2262443p2262443.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Several Flot charts are on a one page

2010-06-21 Thread Misha

Hi!

Fascinated at the flot chart

Is it possible to place more than one flot chart on a one page? And how?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Several-Flot-charts-are-on-a-one-page-tp2262554p2262554.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Dynamic Resources, Properties

2010-06-21 Thread Brown, Berlin [GCG-PFS]
No, I was not using a properties file from the filesystem but it is an
in memory string (the properties data).

The properties data is loaded dynamically when the page is hit. 

-Original Message-
From: Wilhelmsen Tor Iver [mailto:toriv...@arrive.no] 
Sent: Friday, June 18, 2010 2:29 AM
To: users@wicket.apache.org
Cc: Berlin Brown
Subject: SV: Dynamic Resources, Properties

 add(new Label(weatherMessage, new 
 StringResourceModel(weather.message, this, null)));

If you put a property weather.message into the page's properties file
then it will load from there (even if you provide a default in the
panel's properties file). Is that what you mean? Properties are only
read once no matter where they are resolved from.

- Tor Iver

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Dynamic Wizard Example

2010-06-21 Thread jbellmann

Hi there,

i'm new to wicket and i am looking for an small example for dynamic wizards
with wicket. I found the normal example for wizards but not for dynamic
wizards.

Can you give me some links to examples with dynamic wizards?

Thanks,

Joerg
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dynamic-Wizard-Example-tp2262669p2262669.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Dynamic Wizard Example

2010-06-21 Thread Major Péter
Hi,

probably this is not the best implementation, but here it is:
http://idp.sch.bme.hu/cgi-bin/gitweb.cgi?p=aldaris/korok;a=blob;f=sch-kp-web/src/main/java/hu/sch/web/idm/pages/wizard/RegisterWizard.java;h=ccb1c532adf718a5e5a5db3ad0a9a114b2266216;hb=HEAD

We are using this code in production, and works pretty well.

Regards,
Peter

2010-06-21 15:46 keltezéssel, jbellmann írta:
 
 Hi there,
 
 i'm new to wicket and i am looking for an small example for dynamic wizards
 with wicket. I found the normal example for wizards but not for dynamic
 wizards.
 
 Can you give me some links to examples with dynamic wizards?
 
 Thanks,
 
 Joerg

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Extension of ChoiceSelector

2010-06-21 Thread Harald Schwarz
I try to extend FormTester$ChoiceSelector to support an 
org.apache.wicket.extensions.markup.html.form.select.Select SelectBox 
which uses two different kinds of SelectOptions (one for Categories and 
one for the actual object to be selected).

To set the value of the SelectBox I call:

wicketTester.getServletRequest().setParameter(
   formComponent.getInputName(), 
0:vehicle:category:group:1:option:1);



as can be seen in 
org.apache.wicket.util.tester.FormTester.setFormComponentValue(FormComponent?, 
String)


My problem is now that 
org.apache.wicket.extensions.markup.html.form.select.Select.convertInput() 
throws an Exception when the FormComponent is validated.
The method call (SelectOption)get(path) in Select.convertInput() returns 
null and that triggers the Exception.

Strangely that same call with identical path works within the application.
Is it possibly that paths are differing when working with WicketTester? 
As I don't know what else may be my mistake here.


Harald


smime.p7s
Description: S/MIME Cryptographic Signature


Re: Dynamic Wizard Example

2010-06-21 Thread jbellmann

Hi Peter,

thank your quick answer and for the code.
Maybe i will have some questions to you later.

Joerg


-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Dynamic-Wizard-Example-tp2262669p2262721.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Dynamic Wizard Example

2010-06-21 Thread Jeremy Thomerson
Wicket examples in core has a couple of examples.

Jeremy Thomerson
-- sent from my smartphone - please excuse formatting and spelling errors

On Jun 21, 2010 10:19 AM, jbellmann joerg.bellm...@googlemail.com wrote:


Hi Peter,

thank your quick answer and for the code.
Maybe i will have some questions to you later.

Joerg


--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/Dynamic-Wizard-Example-tp2262669p2262721.html

Sent from the Wicket - User mailing list archive at Nabble.com.

---...

To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...


Re: Dynamic Wizard Example

2010-06-21 Thread nino martinez wael
And using the wizard are not that different from using panels ...

2010/6/21 Jeremy Thomerson jer...@wickettraining.com

 Wicket examples in core has a couple of examples.

 Jeremy Thomerson
 -- sent from my smartphone - please excuse formatting and spelling errors

 On Jun 21, 2010 10:19 AM, jbellmann joerg.bellm...@googlemail.com
 wrote:


 Hi Peter,

 thank your quick answer and for the code.
 Maybe i will have some questions to you later.

 Joerg


 --
 View this message in context:

 http://apache-wicket.1842946.n4.nabble.com/Dynamic-Wizard-Example-tp2262669p2262721.html

 Sent from the Wicket - User mailing list archive at Nabble.com.

 ---...

 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...



Re: Several Flot charts are on a one page

2010-06-21 Thread nino martinez wael
That question should go towards the Flot user list, unless the wicket
integration are limiting flot..

regards Nino

2010/6/21 Misha m.run...@portfoliorunner.com


 Hi!

 Fascinated at the flot chart

 Is it possible to place more than one flot chart on a one page? And how?
 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Several-Flot-charts-are-on-a-one-page-tp2262554p2262554.html
 Sent from the Wicket - User mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




Passing Parameter between Multiple Forms on Page.

2010-06-21 Thread Andrei Razin

Hello.

Here is the example of the task I try to accomplish:

1.I have 2 reusable forms on one page: UserGroupsForm and UserListForm
2.The  UserGroupsForm is the list of Groups
3.When the user clicks on any Group on  UserGroupsForm I want to pass the
Group variable to the other form – UserListForm.
4.Then the UserListForm will show all users in the selected form.

The question I have is:

What is the elegant (recommended) way to pass the variable from one form to
the other (or others)?

Appreciate any help.
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Passing-Parameter-between-Multiple-Forms-on-Page-tp2263396p2263396.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



AjaxFormComponentUpdatingBehavior is not called when the textfield is set as required field.

2010-06-21 Thread jammyjohn

Hi,

 If the setRequired is  set to true, then the println statement is not
called, otherwise it is called. 
Not sure, where I am doing wrong. Please suggest.

final TextFieldString name= new TextFieldString(name); 
 
name.setRequired(true);
   
form.add(name.setConvertEmptyInputStringToNull(false).setOutputMarkupId(true));

 name.add(new AjaxFormComponentUpdatingBehavior(onBlur){
@Override
protected void onUpdate(AjaxRequestTarget target) {

System.out.println(is this called?);
target.addComponent(feedbackPanel);
}

});

Thanks for your time.
J.
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AjaxFormComponentUpdatingBehavior-is-not-called-when-the-textfield-is-set-as-required-field-tp2263486p2263486.html
Sent from the Wicket - User mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




RESTful wicket

2010-06-21 Thread Douglas Ferguson
Does anybody have experience with this?

http://code.google.com/p/wicket-rest/

Does it work well?

Or is there something better out there?


D/

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org