Help to choice ajax component

2008-03-31 Thread Fabien D.
Hi everybody, I m new user of wicket, and I need your opinion for helping me to do something. Like gmail when you attach a file, I would like to do a link which can be clicked and permits to display a new textfield with a button (fo searching a file) and a radiobox. This link can be clicked agai

Re: Help to choice ajax component

2008-03-31 Thread Fabien D.
Thank you for your help, but is there another solution?? Because i want to add as many FileUploadFiled (with Radio) as the user have clicked in my link? My research don't let me optimistic by using ListView. -- View this message in context: http://www.nabble.com/Help-to-choice-ajax-component-t

Re: Package resource not found in YUI package

2008-03-31 Thread Fabien D.
Have you check with the version 1.3.2? -- View this message in context: http://www.nabble.com/Package-resource-not-found-in-YUI-package-tp16395623p16395915.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: how to change the Label Value

2008-03-31 Thread Fabien D.
Label label = new Label("id",new Model("Here you set your value")); shrimpywu wrote: > > hi all, > i am new to wicket, > just ask a simple question.. > > how to change the value of a label > for example > Label label = new Label("id",imodel); > > how can do label.setValue("some string"); >

Re: Help to choice ajax component

2008-03-31 Thread Fabien D.
I've investigued the ListView, and i have succeded for doing my dynamic adding item. The problem now is that when i add a Item, all the fields are reseted, It don't keep the information in the field. The is my code : this.test = new ArrayList(); CheckBox toto = new Chec

Problems and Questions about MultiFileUploadField, UploadProgressBar

2008-04-02 Thread Fabien D.
Hi, First, I have a question : is it possible to use MultiFileUploadField, UploadProgressBar together?or UploadProgressBar is only for simpleUpload? Secondly, I have a problem to use MultiFileUploadField (I adapt the example http://wicketstuff.org/wicket13/upload/multi). For the moment, I can a

Re: Problems and Questions about MultiFileUploadField, UploadProgressBar

2008-04-02 Thread Fabien D.
My problem is fixed! :) I search response for my question : is it possible to use MultiFileUploadField, UploadProgressBar together?or UploadProgressBar is only for simpleUpload? -- View this message in context: http://www.nabble.com/Problems-and-Questions-about-MultiFileUploadField%2C-Upload

Re: Problems and Questions about MultiFileUploadField, UploadProgressBar

2008-04-03 Thread Fabien D.
dField, UploadProgressBar together, because UploadProgressBar is linked with the simple Upload field. Peter Ertl wrote: > > Great! > > So could you share your experience? > > > Am 02.04.2008 um 11:58 schrieb Fabien D.: > >> >> My problem is fixed! :) >

Get back value for a RatingPanel

2008-04-04 Thread Fabien D.
Hi I have a problem to get back the value of a rating panel. It displays well. This is the déclaration : RatingPanel rating = new RatingPanel(str_rating,model_rating,5,true){ private double rating = 0; pro

Re: DataPicker problem

2008-04-04 Thread Fabien D.
search joda-time... and this package is obligatory :) -- View this message in context: http://www.nabble.com/DataPicker-problem-tp16487490p16490804.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsu

Re: Get back value for a RatingPanel

2008-04-07 Thread Fabien D.
hi , Thank you, it was that :) -- View this message in context: http://www.nabble.com/Get-back-value-for-a-RatingPanel-tp16488179p16535662.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe,

Problems with cookie

2008-04-07 Thread Fabien D.
Hi I have a problem to set and use cookie !! I have followed the example found in wickets example : Cookie cookieUser = new Cookie("cookieUser", email); Cookie cookiePassword = new Cookie("cookiePassword", mdp); cookieUser.setMaxAge(3600); cookiePassword.setMaxAge(3600); ((WebResponse)getReques

Re: Problems with cookie

2008-04-08 Thread Fabien D.
> On Mon, Apr 7, 2008 at 7:56 AM, Fabien D. <[EMAIL PROTECTED]> > wrote: >> >> Hi >> >> I have a problem to set and use cookie !! >> >> I have followed the example found in wickets example : >> >> Cookie cookieUser = n

Re: Problems with cookie

2008-04-09 Thread Fabien D.
It's working, thank you for your help igor.vaynberg wrote: > > like i said change your code to > ((WebResponse)RequestCycle.get().getResponse()).addCookie(... > > -igor > > On Tue, Apr 8, 2008 at 12:48 AM, Fabien D. <[EMAIL PROTECTED]> > wrote: >> >

FileUploadField and Image

2008-04-10 Thread Fabien D.
Hi, I would like to do a special behavior. I have a input for FileUploadField, when the user choices an image in his local disk, this file is automatically uploaded (in a temp folder of tomcat) and rendered whitout click on submit... How can i do this if it's possible? Thank you in advance --

Problems with Palette

2008-04-16 Thread Fabien D.
Hi everybody, I have two problems with the Palette. The first one is when the user submits the form and there are problems with the other textfield (Validator), the left field for the selection is reseted!! The second problem is when all fields are good and when a try de getBack the list of se

Re: Problems with Palette

2008-04-18 Thread Fabien D.
nobody can help me?? Fabien D. wrote: > > Hi everybody, > > I have two problems with the Palette. > > The first one is when the user submits the form and there are problems > with the other textfield (Validator), the left field for the selection is > reseted!! > &

Problems with FileUploadField

2008-04-22 Thread Fabien D.
Hi, I would like to add a behavior on my FileUploadField But I can't get back the path of the file, or the file this.logo = new FileUploadField("inputLogo"); logo.setRequired(false); logo.add(new AjaxFormComponentUpdatingBehavior("onchange") { private static final

Re: Problems with FileUploadField

2008-04-22 Thread Fabien D.
My researches show FileUploadField does not support ajax behavior So there is no wicket input, which permits to the user to browse his local disk? Thank you in advance. Fabien D. wrote: > > Hi, I would like to add a behavior on my FileUploadField > > But I can't get bac

Re: Problems with FileUploadField

2008-04-23 Thread Fabien D.
; You have to add an iframe and post to that. > > At least, I haven't managed to get it working with Ajax... > > > Cristi Manole > > On Tue, Apr 22, 2008 at 3:04 PM, Fabien D. <[EMAIL PROTECTED]> > wrote: > >> >> Hi, I would like to add a behavi

BookmarkablePageLink question

2008-04-25 Thread Fabien D.
I try to use BookmarkablePageLink : I 've done this : mountBookmarkablePage("projet", ProjetPage.class); BookmarkablePageLink link = new BookmarkablePageLink("lien_projet", ProjetPage.class); link.setParameter("projet", inf.getNom()); the result is : ./projet/projet/MySQL I want just /pr

Re: BookmarkablePageLink question

2008-04-25 Thread Fabien D.
I will search in this way, thank you Martijn Dashorst wrote: > > See Application#mount() and the various URL coding strategies that are > available. > > I think you are looking for IndexedStrategy > > Martijn > > On 4/25/08, Fabien D. <[EMAIL PROTECTE

Re: BookmarkablePageLink question

2008-04-25 Thread Fabien D.
I have another question : About the BookmarkablePageLink, and the display url, it is possible to do not display the JSESSIONID??? thank you in advance Fabien D. wrote: > > I will search in this way, thank you > > Martijn Dashorst wrote: >> >> See Application#mou

AbstractTab et BookmarkablePageLink

2008-04-28 Thread Fabien D.
Hi, I'm using AbastractTab with two panels. I want to have a BookmarkablePageLink for these Panel, so my question is : Is it possible??? If not, is there another solution? Thank you in advance -- View this message in context: http://www.nabble.com/AbstractTab-et-BookmarkablePageLink-tp1693

RatingPanel and ResetLink

2008-05-05 Thread Fabien D.
Hi everybody, I try to add a reset link for the rate to my RatingPanel. I have done this : # Reset rating And in my class : final RatingPanel rating = new RatingPanel("rating1", new Model(),5,true){

Re: RatingPanel and ResetLink

2008-05-05 Thread Fabien D.
I have forgot to do this reset link, I have just done this : protected void onRated(int rating, AjaxRequestTarget target) { if (this.rating == rating) this.rating = this.rating-1;

CheckGroups

2008-05-07 Thread Fabien D.
Hi everydoby, I have a problem to make a complex form with CheckGroups . My question is : is ti possible to use CheckGroup to check anothers CheckGroups ?? And if it is not possible, how can I use CheckGroups to check checkboxs wich will checkanothers checkboxs?? I don't know if you understan

How can i load Image??

2008-05-22 Thread Fabien D.
Hi everybody, In my web application, I want to display a Image. I try to use Image and ResourceReference but I have some problemes My image is in a folder "stock" in my context of my web aplication : /stock/domaine/sdoimaine/projet/logo. I try to load it with the real path, or the context path

Re: How can i load Image??

2008-05-22 Thread Fabien D.
Thank you for your help, I will try your solution :) -- View this message in context: http://www.nabble.com/How-can-i-load-Image---tp17403872p17406121.html Sent from the Wicket - User mailing list archive at Nabble.com. - To u

Re: Use wicketstuff-rome

2008-05-28 Thread Fabien D.
Hi, The generated code contains the link, but nothing is displayed. I think it misses something in my WebApplication.class . -- View this message in context: http://www.nabble.com/Use-wicketstuff-rome-tp17471567p17507091.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Use wicketstuff-rome

2008-05-28 Thread Fabien D.
I have something only in the head part : Open Source - Base de conaissance en ligne ]]>*/ In the body, nothing .

Re: Use wicketstuff-rome

2008-05-28 Thread Fabien D.
I don't see icon ... Let see : http://www.nabble.com/file/p17509232/seeqd9.jpg If someone have an idea Thank you in advance -- View this message in context: http://www.nabble.com/Use-wicketstuff-rome-tp17471567p17509232.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Use wicketstuff-rome

2008-05-28 Thread Fabien D.
Maybe your talking about this : http://img519.imageshack.us/img519/7098/seeecv1.jpg In my web application, I have nothing. Is there something to add in the WebApplication.class? I have tried this : mountSharedResource("/RSS", new ResourceReference("myFeed") {

Re: Use wicketstuff-rome

2008-05-28 Thread Fabien D.
I want to have I link to subscibe the RSS, and I want to create 8 RSS for each part of my application. -- View this message in context: http://www.nabble.com/Use-wicketstuff-rome-tp17471567p17513375.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Problem with Stress

2008-05-30 Thread Fabien D.
Hi everybody, I'm french and unfortunately in french we have stresses! My server tomcat is using UTF-8, and all my files are encoding in UTF-8, and I want to use this standard. When I want to display a label : like this "add(new Label ("name","Générer Document"));" It displays : Générer D

Re: Problem with Stress

2008-05-30 Thread Fabien D.
Thank you for your help, but It's not working :( Thijs wrote: > > Label label; > add(label = new Label ("name","Générer Document"));" > label.setEscapeModelStrings(false); > > Thijs > > > > Fabien D. schreef: >> Hi everyb

Re: Problem with Stress

2008-05-30 Thread Fabien D.
ay the stress Matej Knopp-2 wrote: > > Property files are always ISO 8859-1. Try escaping the string in > property file or use eclipse plugin that does that for you. Or try xml > property files. > > -Matej > > On Fri, May 30, 2008 at 1:32 PM, Fabien D. <[EMAIL PROTECTED]> &

Re: Problem with Stress

2008-05-30 Thread Fabien D.
Thank you, it's working I have forgot the htmp code like è Fabien D. wrote: > > Thank you for your help, but It's not working :( > > > Thijs wrote: >> >> Label label; >> add(label = new Label ("name","Générer Documen

Re: Problem with Stress

2008-05-30 Thread Fabien D.
you save your .java files as utf-8 and mark your html files as utf-8 > html you should be > able to use special characters directly. > > Kind regards > Florian Sperber > > On Fri, 30 May 2008 05:08:40 -0700 (PDT), "Fabien D." > <[EMAIL PROTECTED]> wrote: >&g

Re: Problem with Stress

2008-05-30 Thread Fabien D.
yes, i see it in the generated code Jonas-21 wrote: > >> > > does the actual http header also say this? afair having this line in the > html > isn't enough to have contents treated as utf-8 > > - > To unsubscribe, e-mail: [E

getString, Label -> Warn

2008-06-02 Thread Fabien D.
Hi everybody, If I use this code : BookmarkablePageLink lien_accueil = new BookmarkablePageLink("accueil", HomePage.class); Label labelLinkAccueil = new Label ("name",getString("LabelLinkAccueil")); labelLinkAccueil.setEscapeModelStrings(false);

Re: getString, Label -> Warn

2008-06-02 Thread Fabien D.
I have tried, but I have the same warning -- View this message in context: http://www.nabble.com/getString%2C-Label--%3E-Warn-tp17599949p17600229.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubs

Re: getString, Label -> Warn

2008-06-02 Thread Fabien D.
To use model and label ... I will try RessourceModel now Thank you for your help -- View this message in context: http://www.nabble.com/getString%2C-Label--%3E-Warn-tp17599949p17602329.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: getString, Label -> Warn

2008-06-02 Thread Fabien D.
With the ModelRessource, it's working, thank you :) :) -- View this message in context: http://www.nabble.com/getString%2C-Label--%3E-Warn-tp17599949p17602394.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Create WebPage inside a normal

2008-06-06 Thread Fabien D.
Hi, I have a timer class associated with a timertask class, to send daily an email generated by wicket But in my timertask when I try to create my WebPage thanks to the constructor, it never enters to the constructor... I would like to do something like that : in my timertask ... EmailPag

Re: Sending HTML email from Wicket app

2008-06-06 Thread Fabien D.
I try to do something like you, to send daily an email!! For the moment, I have problems, but you can find more information here : http://www.nabble.com/Generating-email-body-with-wicket-td14042459.html#a14042459 -- View this message in context: http://www.nabble.com/Sending-HTML-email-from-Wi

Re: Create WebPage inside a normal

2008-06-06 Thread Fabien D.
Why Are you saying that i double post?? -- View this message in context: http://www.nabble.com/Create-WebPage-inside-a-TimerTask-Class-tp17693737p17694013.html Sent from the Wicket - User mailing list archive at Nabble.com. -

Re: Create WebPage inside a normal

2008-06-06 Thread Fabien D.
Okay, sorry :) -- View this message in context: http://www.nabble.com/Create-WebPage-inside-a-TimerTask-Class-tp17693737p17694175.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [

Re: Create WebPage inside a TimerTask Class

2008-06-09 Thread Fabien D.
Hi, thank you for tour help... This is a very strange behavior. I have tried to display this page, so I have created a link to this page, and everything is good, I have my Page, and it enters into the constructor. I have tried to put this timer class into a WebPage put, unfortunately it does'nt

Help to choice a wicket component

2008-06-10 Thread Fabien D.
Hi everybody, I need your help the choice the best component for managing the users of my wicket application. I need a Table, with 4 columns : 3 inputtexts to edit first and familly name, and email, and 1 DropDownChoice to edit right acces. So what is the best wicket component to do this? Than

Re: Help to choice a wicket component

2008-06-10 Thread Fabien D.
okay, thank you :) I will try to use it -- View this message in context: http://www.nabble.com/Help-to-choice-a-wicket-component-tp17751207p17753162.html Sent from the Wicket - User mailing list archive at Nabble.com. - To uns

Re: Help to choice a wicket component

2008-06-10 Thread Fabien D.
I have read documents found on wiki and javadoc, but I don't find the solution to add other component than Label to DataTable. It means that we only can use DataTable with label? -- View this message in context: http://www.nabble.com/Help-to-choice-a-wicket-component-tp17751207p17756210.html S

Problem with error message and refreshingView

2008-06-19 Thread Fabien D.
Hi evreybody, I 'm finalising my refreshingView, in ma web application for managing user. -> my form (wicket id "form") |-> my refreshingView (wicket id "simple) |-> Textfield (wicket id "name") For example, if I set required my textfield, and I want to customize to display message in a pr

Re: Problem with error message and refreshingView

2008-06-19 Thread Fabien D.
I find a solution but I supose that it's not the best. I put between the "simple" and the "name" the Id of the row (the number of rows of my refreshingView is not fixed :( ) form.simple.1.name.Required = -- View this message in context: http://www.nabble.com/Problem-with-error-message-

CheckBoxMultipleChoice, Palette -> "onchange"

2008-06-19 Thread Fabien D.
Hi everybody, There is someone who can tell me how to change the model of selected items for these similar objects? Because it's possible to change the model of items with setChoices(IModel m) or setChoices(List l) but there is not setSelectedChoices(IModel m) Thank you for your help!

Re: CheckBoxMultipleChoice, Palette -> "onchange"

2008-06-19 Thread Fabien D.
I find the solution, I create a new object with a new model for selected items, and i do a form.replace(Component c) -- View this message in context: http://www.nabble.com/CheckBoxMultipleChoice%2C-Palette--%3E-%22onchange%22-tp18008412p18009282.html Sent from the Wicket - User mailing list arch

Display of own message in FeedbackPanel

2008-03-20 Thread Fabien D.
Hi everybody, I'm a new french user of wicket, and i 'm apologizing in advance for english and comprehension mistakes. So, I want to display in a FeedbackPanel my own messages for especially events. For example, in my suscribing panel, the user has to write twice his password. So I want to check

Re: Display of own message in FeedbackPanel

2008-03-20 Thread Fabien D.
Thank you all for you responding speed :) Amazing Okay i will check tomorrow for this issue.But if my condition is not take care by Feedback An other exemple, i want to check if the email of the user is already in my database, and display a error message in my FeedbackPanel in this case. How c

Re: Display of own message in FeedbackPanel

2008-03-21 Thread Fabien D.
Thank you all for your help, There is no problem for the password, but now I'm trying to create my own validator. I have a problem during compilation (with ant). I have done this : email.add(new IValidator() { validate(IValidatable v) { if ( !CDat

Re: Display of own message in FeedbackPanel

2008-03-21 Thread Fabien D.
O_o sorry for this mistake I try this : email.add(new IValidator() { public void validate(IValidatable v) { if ( !CDataVerification.validEmail( (String)v.getvalue() ) ) v.add(new ValidationError().addMessa

Re: Display of own message in FeedbackPanel

2008-03-21 Thread Fabien D.
For the last time, Thank you :) -- View this message in context: http://www.nabble.com/Display-of-own-message-in-FeedbackPanel-tp16182720p16197598.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsub

Problem with DatePicker

2008-03-26 Thread Fabien D.
Hi, I try to use a DatePicker like this : TextField date_version = new TextField("date_version", model_date_version, Date.class); date_version.setRequired(true); date_version.add(new DatePicker()); this.form_ajoutinfgeneral.add(date_version); I have import : im

Re: Problem with DatePicker

2008-03-26 Thread Fabien D.
I've just migrated to wicket 1.3.2 and added the good librairies. And I have exactly the same error! That means I've done a mistake in my code? Thank you for your help :) Gerolf Seitz wrote: > > this is fixed in 1.3.2 > > Gerolf > > On Wed, Mar 26, 2008 at

Re: Problem with DatePicker

2008-03-27 Thread Fabien D.
Thank you !! It was that. I had not joda-time :) igor.vaynberg wrote: > > do you have joda jars which wicket-datetime depends on??? > > -igor > > > On Wed, Mar 26, 2008 at 8:25 AM, Fabien D. <[EMAIL PROTECTED]> > wrote: >> >> I've just migrate

Palette and Require Validator

2008-03-28 Thread Fabien D.
Hi, Is there natif require validator for a palette?? Thank you in advance -- View this message in context: http://www.nabble.com/Palette-and-Require-Validator-tp16348401p16348401.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Problem test RadioChoice

2008-06-30 Thread Fabien D.
Hi, Have you try : YourRadioChoice.add(new AjaxFormComponentUpdatingBehavior("onchange") { private static final long serialVersionUID = 1L; protected void onUpdate(AjaxRequestTarget target) { .. target.addComponent(Component);

Problem with AutoCompleteTextField and display

2008-07-16 Thread Fabien D.
Hi everybody, I have a strange problem when I use a AutoCompleteTextField. This component works well, indeed it suggests words, but when I pass on a word to select it, the page is scrolling down. To be more unequivocal, look at the screenshot : http://www.nabble.com/file/p18486597/totoyz5.jpg

Re: Problem with AutoCompleteTextField and display

2008-07-16 Thread Fabien D.
no 1.3.3, i will try with 1.3.4. Uwe Schäfer wrote: > > Fabien D. schrieb: > >> I have a strange problem when I use a AutoCompleteTextField. This >> component >> works well, indeed it suggests words, but when I pass on a word to select >> it, the page is scro

Re: Problem with AutoCompleteTextField and display

2008-07-16 Thread Fabien D.
I have the same problem with 1.3.4. I met this behavior when my page has a scrolbar. If there is no scrolbar, there is no problem. This is come from Wicket? CSS?... Fabien D. wrote: > > no 1.3.3, i will try with 1.3.4. > > > Uwe Schäfer wrote: >> >> Fabien D

RefreshingView how to resize it?

2008-07-28 Thread Fabien D.
Hi everybody, I'm using a RefreshingView inside a table. This table is to long, and i would like to reduce the width. I try to do this with the css, fail! *** Id Email * Nom de passe *

Re: RefreshingView how to resize it?

2008-07-28 Thread Fabien D.
I found the solution, by reducing the size of the input text inside the refreshingview. -- View this message in context: http://www.nabble.com/RefreshingView-how-to-resize-it--tp18688971p18689155.html Sent from the Wicket - User mailing list archive at Nabble.com. -

WebMarkupContainer and AjaxSelfUpdatingTimerBehavior

2009-02-26 Thread Fabien D.
Hi, I want to refresh every 5s my 4 listviews. So I have use AjaxSelfUpdatingTimerBehavior with them. But it was not working, the solution that I have found here, is to put their in a WebMarkupContainer. Now it's working for resfreshing... But every 5 secondes I have 4 new listviews adding to th

Re: WebMarkupContainer and AjaxSelfUpdatingTimerBehavior

2009-02-26 Thread Fabien D.
I really need your help. I have replaced the WebMarkupContainer by a Panel. I use the methode addOrReplace (Component child) in my panel. When I arrived in the page, everybody is fine but when it refreshs it, It adds one time in more the panel in the top of my page!! My Page : http://img408.im