Re: (my code palette) how to set default options in object palette

2010-02-02 Thread wic...@geofflancaster.com
select class=choicesSelect name=THIS IS THE STRING YOU WANT ... Good luck. Original Message: - From: victorTrapiello vic...@trapiello.net Date: Sun, 31 Jan 2010 12:19:14 -0800 (PST) To: users@wicket.apache.org Subject: Re: (my code palette) how to set default options in object

Re: (my code palette) how to set default options in object palette

2010-02-02 Thread victorTrapiello
: Sun, 31 Jan 2010 12:19:14 -0800 (PST) To: users@wicket.apache.org Subject: Re: (my code palette) how to set default options in object palette Thank you very much I will try to do it victorTrapiello wrote: Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new

Re: (my code palette) how to set default options in object palette

2010-02-01 Thread victorTrapiello
Hello Carlos, Sorry but I´m new also with Maven, but I got it working, I have downloaded all the dependencies and now I have my quickstart projects in netbeans ready to write some code, but my question is once I write the code that I want to share with you guys how can I share it¿? do you

Re: (my code palette) how to set default options in object palette

2010-02-01 Thread victorTrapiello
Also to say that my code is very basic I only want to add this palette component to show you that it doesn´t show the default list of subjects: List Subjects = new ArrayList(); Subjects.add(MATHS); Subjects.add(ENGLISH); ListString ldefault = new ArrayList();

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread nino martinez wael
Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had this working with wicket 1.2 / 1.3 soo should still be the case. 2010/1/29 victorTrapiello vic...@trapiello.net I does not work, I think the key point is my IChoiceRenderer renderer = new

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread victorTrapiello
Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino martinez wael wrote: Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had this working with wicket 1.2 / 1.3 soo should still be the case.

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread Carlos Vara
Hi Victor, a quickstart is a wicket project using this maven archetype: http://wicket.apache.org/quickstart.html On Sun, Jan 31, 2010 at 7:46 PM, victorTrapiello vic...@trapiello.netwrote: Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread victorTrapiello
Thank you very much I will try to do it victorTrapiello wrote: Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino martinez wael wrote: Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had

Re: (my code palette) how to set default options in object palette

2010-01-29 Thread victorTrapiello
well I have defined my palette component like this: asignString is an string linst with the available subjects (It works fine, the palette shows the proper subjects, but it doesn´t show the default selected one which I save them in the list lSelected IChoiceRenderer renderer = new

Re: (my code palette) how to set default options in object palette

2010-01-29 Thread nino martinez wael
Form f=new Form(form); add(f); List persons = ComponentReferenceApplication.getPersons();; IChoiceRenderer renderer = new ChoiceRenderer(fullName, fullName); final Palette palette = new Palette(palette, new ListModelPerson(new ArrayListPerson()), new CollectionModelPerson(

Re: (my code palette) how to set default options in object palette

2010-01-29 Thread victorTrapiello
I does not work, I think the key point is my IChoiceRenderer renderer = new ChoiceRenderer(fullName, fullName); i leave it empty and it works for the available subject but not for the predefined! any more thoughts¿? Thank you very much guys nino martinez wael wrote: Form f=new