Re: MultiFileUploadField: Filter file types

2009-06-04 Thread Fernando Wermus
nk you ever one > > -- > Marco Santos > -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: composite wizard

2009-06-02 Thread Fernando Wermus
...I forgot to tell that the second wizard has some info in the model dependent from the first wizard. On Tue, Jun 2, 2009 at 11:16 AM, Fernando Wermus wrote: > Hi all, > I have two different wizard which can be use alone or can be use one > after the another. Which is the best so

composite wizard

2009-06-02 Thread Fernando Wermus
Hi all, I have two different wizard which can be use alone or can be use one after the another. Which is the best solution to these case? Thanks -- Fernando Wermus. www.linkedin.com/in/fernandowermus

elphas: Error occurred during initialization of VM agent library failed to init: instrument

2009-05-31 Thread Fernando Wermus
I am trying to run Elphas, but I got the following message: Error opening zip file: Error occurred during initialization of VM agent library failed to init: instrument The -javaagent PATH is correct. But it still throws the error shown above. Thanks in advance -- Fernando Wermus

Re: Elphas url svn fails to checkout

2009-05-31 Thread Fernando Wermus
This is the correct one: http://elephas.googlecode.com/svn/trunk/ On Sun, May 31, 2009 at 7:09 PM, Fernando Wermus wrote: > Hi all, > I was trying to use Elphas project, but the url is not working. Does > anyone could provide a good one? > > Thanks in advance! > >

Elphas url svn fails to checkout

2009-05-31 Thread Fernando Wermus
Hi all, I was trying to use Elphas project, but the url is not working. Does anyone could provide a good one? Thanks in advance! -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: Wicket + RSS

2009-05-31 Thread Fernando Wermus
It is solved. Thanks! On Sun, May 31, 2009 at 1:37 PM, Fernando Wermus wrote: > java.lang.RuntimeException: Unable to parse feed: > http://feeds.feedburner.com/code_poet > at > org.wicketstuff.rome.SyndEntryListModel.load(SyndEntryListModel.java:31)

Re: Wicket + RSS

2009-05-31 Thread Fernando Wermus
, May 31, 2009 at 1:37 PM, Fernando Wermus wrote: > Nino, > I got this error running a simple code. It couldn read rss from Code > Poet! > > > > On Sun, May 31, 2009 at 1:27 PM, Fernando Wermus < > fernando.wer...@gmail.com> wrote: > >> Nino, >> S

Re: Wicket + RSS

2009-05-31 Thread Fernando Wermus
Nino, I got this error running a simple code. It couldn read rss from Code Poet! On Sun, May 31, 2009 at 1:27 PM, Fernando Wermus wrote: > Nino, > So I have to install it locally... > > ps: I am looking just to publish rss right now. > > thanks > > > On S

Re: Wicket + RSS

2009-05-31 Thread Fernando Wermus
rome/1.3-SNAPSHOT/ > > So shouldnt be a problem.. Are you looking publish rss with wicket or > wicket to consume rss and show it on a page? wicketstuff rome will let > you do both afaik... > > 2009/5/31 Fernando Wermus : > > Hi all, > > > > I am looking to pub

Wicket + RSS

2009-05-31 Thread Fernando Wermus
true true + org.wicketstuff wicketstuff-rome 1.3-SNAPSHOT -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: how to show checkboxes in two column

2009-05-31 Thread Fernando Wermus
rieved > from database) as a group of check boxes in two column. > > Many thanks. > --Simon > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail:

Re: Any forum (bb) components / applications written using Wicket?

2009-05-26 Thread Fernando Wermus
; > Nova Creator Software > > > www.novacreator.com > > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > > -- > Cristi Manole > > Nova Creator Software > www.novacreator.com > -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: Wicket and Flex

2009-05-21 Thread Fernando Wermus
have some experience with wicket and flex? > > thanks > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Fernando Wermus. www.linkedin.com/in/fernandowermus

pickwick next, prev, last, first bug?

2009-05-21 Thread Fernando Wermus
Hi all, The buttons in pickwick wicketstuff are not working properly. The ImagePage class has an inner class that provoke the bug. The code below show the changes that I made to correct the issue. I don't know enough java to tell you why is working in one way but not another :( public clas

Selenium + Wicket.

2009-05-19 Thread Fernando Wermus
Hi all, I've set up setOutputComponentPath(true) in init method my app's. But I don't know how to instruct Selenium to look for wicket:path attributes. How can I instruct Selenium to look for wicket:path? Thanks in advance Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: Wizard, checkGroup and check

2009-05-14 Thread Fernando Wermus
ersion is always preferred as a first measure. > > Martijn > > On Fri, May 15, 2009 at 1:12 AM, Igor Vaynberg > wrote: > > you can search jira for all known issues, i dont remember all of them > > from the top of my head :) > > > > -igor > > > > On

Re: Wizard, checkGroup and check

2009-05-14 Thread Fernando Wermus
patches are applied even quicker :) > > -igor > > On Thu, May 14, 2009 at 4:02 PM, Fernando Wermus > wrote: > > Hi!, > >I am facing a problem that I don't know how to face. > > > > I have a wizard several steps. One of them has a checkGroup and several

Wizard, checkGroup and check

2009-05-14 Thread Fernando Wermus
", "checked"); } Thanks in advance. -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: CheckGroup and back Button problem

2009-05-14 Thread Fernando Wermus
; >group.add(products.setReuseItems(true)); > > >} > > > > > >class DigitalOrderForm extends Form { > > >DigitalOrderForm(String s) { > > >super(s); > > >} > > > > > >protected void onSubmit() { > > >Order order = (Order) getModelObject(); > > >System.err.println("LIST2 = " + > > > order.getDigitalPackets()); > > >setResponsePage(PageTwo.class); > > >} > > >} > > > > > > The second page is just a back button like this: > > > > > > public PageTwo() { > > >add(new Button("back") { > > >public void onSubmit() { > > >setResponsePage(HomePage.class); > > >} > > >}); > > >} > > > > > > Anybody knows how to get the selected objects shown when you go back > like > > > that ? > > > > > > /Steen > > > > > > -- Fernando Wermus. www.linkedin.com/in/fernandowermus

Re: Wicket & SWFObject

2009-05-07 Thread Fernando Wermus
--- > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > > --------- > To uns

Re: bug in swfObject.java --> http://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html

2009-05-07 Thread Fernando Wermus
oesn't get lost. > > > > -- > > Jeremy Thomerson > > http://www.wickettraining.com > > > > > > > > > > On Thu, May 7, 2009 at 12:46 PM, Fernando Wermus > > wrote: > > > Hi all, > > >There is a small bug in swfObject

bug in swfObject.java --> http://cwiki.apache.org/WICKET/open-flash-chart-and-wicket.html

2009-05-07 Thread Fernando Wermus
result.append(quote).append(e.getKey()).append(quote + ":" + quote).append(e.getValue()).append(quote).append(comma); } result.deleteCharAt(result.length() - 1); result.append("}"); return result.toString(); } return "{}";

Full integration Wicket - Blazeds. Is it possible?

2009-05-04 Thread Fernando Wermus
write.path /WEB-INF/flex 1 MessageBrokerServlet /messagebroker/* wicket.myApp /messagebroker/* -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: Wizard & Tabs

2009-05-04 Thread Fernando Wermus
g the > product. That way I dont have to repeat the product attributes... > Any help/thoughts much appreciated. > thanks > > > > -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

palette + wizard + validation not empty + a particular item

2009-04-21 Thread Fernando Wermus
target) { }}); I got a nullpointer exception in stepCandidatos.getPalette().getRecorderComponent().add(new AjaxFormComponentUpdatingBehavior("onchange") { I am working with wicket 1.3.0 -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: jetty, wicket and multiple maven modules. refresh class problem.

2009-04-16 Thread Fernando Wermus
buil automaticaly was off. Jajaja! thanks On Thu, Apr 16, 2009 at 9:20 AM, Fernando Wermus wrote: > Hi, > I solved dependencies problems. > I still cannot debugging and programming at the same time. Eclipse > didn't take the changes I did to a any business java fil

Re: jetty, wicket and multiple maven modules. refresh class problem.

2009-04-16 Thread Fernando Wermus
isDeportes-module 1.0-SNAPSHOT pom XXX-core XXX-webapp XXX-swf XXX-cfg On Wed, Apr 15, 2009 at 3:00 PM, Igor Vaynberg wrote: > On Wed, Apr 15, 2009 at 2:56 PM, Fernando Wermus > wrote: > > Igor, > > I avoid to use start.java because I get: >

Re: jetty, wicket and multiple maven modules. refresh class problem.

2009-04-15 Thread Fernando Wermus
;. This will allow it to > pick > > up changes as you develop. > > > > -- > > Jeremy Thomerson > > http://www.wickettraining.com > > > > > > > > On Wed, Apr 15, 2009 at 4:00 PM, Fernando Wermus > > wrote: > > > >> I am. I am

Re: jetty, wicket and multiple maven modules. refresh class problem.

2009-04-15 Thread Fernando Wermus
reads classes at webapp/target. -fernando On Wed, Apr 15, 2009 at 1:47 PM, Igor Vaynberg wrote: > are you using eclipse? > > -igor > > On Wed, Apr 15, 2009 at 1:05 PM, Fernando Wermus > wrote: > > Hi, > > I have a web site with wicket + maven. I use a maven modul

jetty, wicket and multiple maven modules. refresh class problem.

2009-04-15 Thread Fernando Wermus
change in a business logic java file, I have the old .class file in webapp/target which havent been replaced for logic business module class. How can I make jetty take the last changes I ve made? thanks in advance. -- Fernando Wermus. www.linkedin.com/in/fernandowermus http

publish resources in webapp

2009-04-06 Thread Fernando Wermus
Hi all! I have several swf files in webapp/ folder and I need to publish them for any user. How can I achieve that in wicket? Thanks in advance! -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: Class org/apache/wicket/Component violates loader constraints

2009-03-27 Thread Fernando Wermus
in such >> a scenario. Did you try to generate a new quickstart and see if that >> works? >> >> Martijn >> >> On Fri, Mar 27, 2009 at 7:43 PM, Fernando Wermus >> wrote: >> >> >>> People,I was working with WTP to debug my wicket app. But

Class org/apache/wicket/Component violates loader constraints

2009-03-27 Thread Fernando Wermus
rizationStrategy.authorize(MetaDataRoleAuthorizationStrategy.java:114) public static final void authorize(final Component component, final Action action, final String roles) { ActionPermissions permissions = (ActionPermissions)component -- Fernando Wermus. www.linkedin.

Re: wicket-like framework to complement wicket?

2008-09-08 Thread Fernando Wermus
ry/Repository.html > > If so, I'd be interested in the code as another submodule to domdrides > (we've got hibernate, jpa, and iBATIS right now). > > On Fri, Sep 5, 2008 at 1:49 AM, Fernando Wermus > <[EMAIL PROTECTED]> wrote: > > Francisco, > > I

Re: wicket-like framework to complement wicket?

2008-09-04 Thread Fernando Wermus
t; Nino Martinez Wael > > Java Specialist @ Jayway DK > > http://www.jayway.dk > > +45 2936 7684 > > > > > > - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: Wicket and Flex integration

2008-08-12 Thread Fernando Wermus
Does anyone have tried to test this example? http://ryangravener.com/wordpress/?p=21 On Thu, Jul 31, 2008 at 2:11 PM, Fernando Wermus <[EMAIL PROTECTED]>wrote: > Dear all, > We want to integrate wicket and Flex. The reason for the integration > is that we would like to

Wicket and Flex integration

2008-07-31 Thread Fernando Wermus
nt to know if the integration was using blaze ds or the ayax bridge, etc Thanks in advance. -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: are declarative auth-roles permissions on a class basis rather than instance basis?

2008-05-28 Thread Fernando Wermus
I think I found it in auth-role example. Thanks anyway. MetaDataRoleAuthorizationStrategy.authorize(forAdminsAndUsers, RENDER, "USER"); where forAdminsAndUsers is a component instance. On Wed, May 28, 2008 at 10:27 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > people, &

are declarative auth-roles permissions on a class basis rather than instance basis?

2008-05-28 Thread Fernando Wermus
people, Auth-roles looks like the declarative permissions are on a class basis rather than instance basis, is it? Which could be the best approach to have instance permissions in auth-roles or should I change to wasp? Thanks in advance. -- Fernando Wermus. www.linkedin.com/in

does auth-roles differentiate by instance?

2008-05-27 Thread Fernando Wermus
differentiate between instances. How does auth-roles manage authorization for different instances of the same Component? Thanks in advance. -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: Roles and Tabbed Panel

2008-05-27 Thread Fernando Wermus
gt; > > > > > Which could be added to the Panel or tab? So far I haven't found a > way to do that. Am I just daft or do I have to keep the check manually? > > > > > > > > > > > > Alexander > > > > > &g

Re: Caused by: org.apache.wicket.WicketRuntimeException: There is no application attached to current thread main

2008-05-20 Thread Fernando Wermus
Thanks. I will take a look. On Tue, May 20, 2008 at 6:52 PM, Frank Bille <[EMAIL PROTECTED]> wrote: > Take a look on WicketTester. > > Frank > > On Tue, May 20, 2008 at 11:20 PM, Fernando Wermus > <[EMAIL PROTECTED]> wrote: > > I am trying to instantiate a P

Caused by: org.apache.wicket.WicketRuntimeException: There is no application attached to current thread main

2008-05-20 Thread Fernando Wermus
junit to be assured that this works. I think this is the problem. If this is the case, how can I do a test to guarantee that this works without the server running? -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogspot.com/

Re: getParameters problem

2008-05-06 Thread Fernando Wermus
ave you tried using the other constructor for > RestartResponsAtInterceptPageException (the one that takes a page > instance)? > > On Tue, May 6, 2008 at 8:44 PM, Fernando Wermus > <[EMAIL PROTECTED]> wrote: > > Hi, > > I've used the authentication and

getParameters problem

2008-05-06 Thread Fernando Wermus
ystem.out.println("Redirijo la pagina a SignIn2"); // Force sign in throw new RestartResponseAtInterceptPageException(PaginaLogIn.class); } return true; } }); crearCarpetaUsuarios(); } -- Fernando Wer

Re: am I doing right? entities no Serializables.

2008-04-25 Thread Fernando Wermus
> to keep the filled in data between requests :-) as the fields have the > data already... When you return a new object Wicket's form update > mechanism will repopulate the object's fields. > > Martijn > > On 4/19/08, Fernando Wermus <[EMAIL PROTECTED]> wrote:

Why is LoadDetachableModel called twice?

2008-04-18 Thread Fernando Wermus
Warren, I am new using LoadableDetacheModel. I would like to know why is called twice in your example. Thanks. -- Fernando Wermus.

Re: am I doing right? entities no Serializables.

2008-04-18 Thread Fernando Wermus
serializable. Is there some > special requirement to have a non-serializable field on your entity > class? > > On Fri, Apr 18, 2008 at 4:50 PM, Fernando Wermus > <[EMAIL PROTECTED]> wrote: > > I am finishing my first app for production in wicket. As any newbie I try > to

am I doing right? entities no Serializables.

2008-04-18 Thread Fernando Wermus
oach to it? Bye! ps: sorry for my english. -- Fernando Wermus.

Re: [vote] Release 1.4 with only generics and stop support for 1.3

2008-03-19 Thread Fernando Wermus
gt; View this message in context: > http://www.nabble.com/-vote--Release-1.4-with-only-generics-and-stop-support-for-1.3-tp16090054p16152849.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Fernando Wermus.

Re: My Wicket Flickr Demo a la Ruby On Rails

2008-03-17 Thread Fernando Wermus
1_archive.html. Please take a > look > > and give me some feedback. > > > > Thanks! > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Fernando Wermus.

Re: Accordion(wicket-stuff) and a YU DatePicket together don't work.

2008-03-12 Thread Fernando Wermus
of the javascript or something > like that(could it be because the calendar uses a different version of > yahoo lib?). Im sick currently, so cant help out. I hope to be up on my > feet by next week. > > Fernando Wermus wrote: > > I have developed some pages using the Nino Saturnino&

Accordion(wicket-stuff) and a YU DatePicket together don't work.

2008-03-11 Thread Fernando Wermus
ion() { return true; } }); return fecha; } ...} -- Fernando Wermus.

Re: errors on the WicketStuff Dojo split container example

2008-02-29 Thread Fernando Wermus
space "wicket". Developers must specify correct namespaces for all > non-Dojo widgets -- will be removed in version: 0.5 > DEBUG: dojo.widget.Parse: error:Error: Could not locate widget > implementation for "extend" in "wicket.widget" registered to namespace > "wicket" > DEBUG: widget ID collision on ID: date10 > DEBUG: widget ID collision on ID: date21 > DEBUG: widget ID collision on ID: date32 > DEBUG: widget ID collision on ID: date43 > -- > View this message in context: > http://www.nabble.com/errors-on-the-WicketStuff-Dojo-split-container-example-tp15183543p15183543.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Fernando Wermus.

Re: my domain model and Joda-Time

2008-02-23 Thread Fernando Wermus
I changed it. Do you know if this upgrade is comming soon? On Sun, Feb 24, 2008 at 3:03 AM, Ryan Gravener <[EMAIL PROTECTED]> wrote: > Use Date instead of DateTime. > > On Sat, Feb 23, 2008 at 11:56 PM, Fernando Wermus < > [EMAIL PROTECTED]> > wrote: > > >

Re: my domain model and Joda-Time

2008-02-23 Thread Fernando Wermus
I found http://issues.apache.org/jira/browse/WICKET-466. If I understand these path will be added in 1.4 release. Is this correct? On Sun, Feb 24, 2008 at 2:56 AM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > Hi all, > I got a parser error using DateTextField. > I am wo

my domain model and Joda-Time

2008-02-23 Thread Fernando Wermus
ing. Should I use always Date attributes instead DateTime ones, and wicket-datetime use it just for conversion, or can I use in my wicket-models? -- Fernando Wermus.

Customizing Palette

2008-02-18 Thread Fernando Wermus
d the attribute value to the li to get the script continues working, It seems to be invalid html because I cannot get the value (I see it in firebug). Which is the best solution? Can I have another attribute in 'li' tag for the value? Should I add a hidden input in this case? Bye! -- Fernando Wermus.

working on my first wicket web 2.0 scriptaculos component

2008-02-13 Thread Fernando Wermus
x27;,'secondlist8'],constraint:false}, { onUpdate: function(element) { wicketAjaxGet('?x=6*%3A1%3Atabs%3Apanel%3Amensajes%3Apanel%3Aholder%3A1%3AIActivePageBehaviorListener%3A0%3A%26amp%3Bwicket%3AignoreIfNotActive%3Dtrue&' + Sortable.serialize(element)); } } ); -- Fernando Wermus.

Re: SortableListView and refresh. 2 questions

2008-02-12 Thread Fernando Wermus
It doesn't work because of the markup I've added. I need two list for my case. Any suggestion would help. On Tue, Feb 12, 2008 at 9:12 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > Hi all, > I am using SortableListView. I can drag and drop and reorder the >

SortableListView and refresh. 2 questions

2008-02-12 Thread Fernando Wermus
Hi all, I am using SortableListView. I can drag and drop and reorder the items in the list, but I cannot see any ajax message going around. I think I am missing something as newbie. SortableListView sortableFirst=crearSortableList("firstlist", "firstlist_firstlist", listData, "imagenDePerf

Re: a wizard + a comboBox

2008-02-12 Thread Fernando Wermus
Igor, Thanks. It was my fault. I have the setter modifier as private. On Tue, Feb 12, 2008 at 4:46 PM, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > please provide a quickstart in a jira issue, or at least show us some code > > -igor > > > On Feb 12, 2008 9:53 AM,

a wizard + a comboBox

2008-02-12 Thread Fernando Wermus
( BoundedThreadPool.java:450) -- Fernando Wermus.

Re: The type wicket.Component cannot be resolved. It is indirectly referenced The type wicket.Component cannot be resolved. It is indirectly referenced from required .class files

2008-02-04 Thread Fernando Wermus
Timo, Thanks! It is obvious. But I am trying to find the zip file with DataPicker for wicket 1.3 and I can't find it. I am not mavenized! On Feb 5, 2008 1:28 AM, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: > On Tue, 05 Feb 2008, Fernando Wermus wrote: > > Some peop

Re: The type wicket.Component cannot be resolved. It is indirectly referenced The type wicket.Component cannot be resolved. It is indirectly referenced from required .class files

2008-02-04 Thread Fernando Wermus
to your > date > field. > Martijn > > [1] Working with Wicket > models<http://cwiki.apache.org/WICKET/working-with-wicket-models.html> > > On 2/4/08, Fernando Wermus <[EMAIL PROTECTED]> wrote: > > > > Hi all! > > I got this error messag

Re: The type wicket.Component cannot be resolved. It is indirectly referenced The type wicket.Component cannot be resolved. It is indirectly referenced from required .class files

2008-02-04 Thread Fernando Wermus
> might help. > > Other than that, a 'clean build' in eclipse. > > Martin > > 2008/2/4, Fernando Wermus <[EMAIL PROTECTED]>: > > > > Hi all! > > I got this error message from Eclipse when I download DataPicker > > libra

The type wicket.Component cannot be resolved. It is indirectly referenced The type wicket.Component cannot be resolved. It is indirectly referenced from required .class files

2008-02-04 Thread Fernando Wermus
to google, instead of Wicket. But I couldn't solve it. Does anyone happend this before? Thanks! -- Fernando Wermus.

onComponentTag vs AttributeModifier

2008-02-04 Thread Fernando Wermus
first time, but It doesn't notice the change next times. Is this the correct behavior or not? The condition to available the combobox is of course the same. -- Fernando Wermus.

AutoCompleBehavior is an abstract class.

2008-01-13 Thread Fernando Wermus
Dear all, I just want to share with the list that AutoCompleBehavior is abstract, but the http://wicketstuff.org/confluence/display/STUFFWIKI/Script.aculo.us+AutoCompleteBehaviorshows an example using it as a concrete class. Bye! -- Fernando Wermus.

Re: UploadProgessBar in a WizardStep?

2008-01-12 Thread Fernando Wermus
value="Upload File"> against the button... > > Let me know if you need further help.. > > > > Fernando Wermus-2 wrote: > > > > mfs, > > May you help me to understand how he got the upload working in > the > > wizard step? if I remove

Re: UploadProgessBar in a WizardStep?

2008-01-08 Thread Fernando Wermus
tep--tp14681748p14681748.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Fernando Wermus.

TabbedPanel sidebar question

2008-01-06 Thread Fernando Wermus
his cannot be solve using css. Thanks in advance! -- Fernando Wermus.

Re: Jetty, images and 404 http

2008-01-04 Thread Fernando Wermus
Michael, I have changed the images to another directory and it is working right now. I don't know the reason of this behavior but It is solved. Thanks a lot. On Jan 4, 2008 4:43 PM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > I don't have any code. The css files a

Re: Jetty, images and 404 http

2008-01-04 Thread Fernando Wermus
e that generates the 404 error > > > > Fernando Wermus-2 wrote: > > > > Jetty is not allowing to download the resources of my pages. It dumps > this > > into the log, > > > > 42150 [btpool0-1 - /misPartidos/resources/bg-header.jpg] DEBUG > > org.mortb

Re: Newbie question. Override class attributes from a tabPanel component

2008-01-03 Thread Fernando Wermus
gt; I > > don't know how to do it, for instance in tabpanel tags such as li and > ul. I > > imagine is pretty easy. > > > > > > for instance, > > > > li class="tab0 selected" > > > > to > > > > li class="

Newbie question. Override class attributes from a tabPanel component

2008-01-03 Thread Fernando Wermus
d" to li class="menu-1-2-2" Thanks in advance. -- Fernando Wermus.

Jetty, images and 404 http

2008-01-03 Thread Fernando Wermus
lot! -- Fernando Wermus.

Re: jetty and eclipse

2008-01-01 Thread Fernando Wermus
ith a different jvm the class file which are in bin directory. When I point jetty to WEB-INF directory, it fails. Thanks in advance. On Jan 2, 2008 2:25 AM, Fernando Wermus <[EMAIL PROTECTED]> wrote: > Could this help? > > 3537 [main] DEBUG org.mortbay.log - loaded class java.util.Arrays

Re: jetty and eclipse

2008-01-01 Thread Fernando Wermus
, Fernando Wermus <[EMAIL PROTECTED]> wrote: > > It is a subclass of WicketExampleApplication abstract class which is a > subclass of WebApplication. > > > On Jan 1, 2008 11:51 PM, cwilkes <[EMAIL PROTECTED] > wrote: > > > > > > > Fer

Re: jetty and eclipse

2008-01-01 Thread Fernando Wermus
It is a subclass of WicketExampleApplication abstract class which is a subclass of WebApplication. On Jan 1, 2008 11:51 PM, cwilkes <[EMAIL PROTECTED]> wrote: > > > Fernando Wermus-2 wrote: > > > > Application class > > web.SignIn2Application must be a subc

jetty and eclipse

2008-01-01 Thread Fernando Wermus
etty.Server.doStart(Server.java:222) at org.mortbay.component.AbstractLifeCycle.start (AbstractLifeCycle.java :40) at jetty.Start.main(Start.java:33) INFO - log- Started [EMAIL PROTECTED]:8081 945 [main] INFO org.mortbay.log - Started [EMAIL PROTECTED]:8081 -- Fernando Wermus.

offtopic: does anyone works with wicket and db4o

2007-10-28 Thread Fernando Wermus
Does anyone use wicket with db4o? If so, I have some strange behavior working with db4o and I suppose that it is related to wicket maybe. I would like to ask in private how there were configured. -- Fernando Wermus.

Re: Wizard and PasswordTextField

2007-10-23 Thread Fernando Wermus
I am sorry! I understood. FormComponent is the parent of PasswordTextField. I thought it was a class related to forms. On 10/23/07, Fernando Wermus <[EMAIL PROTECTED]> wrote: > > It takes two forms to validate but I have just one form. I dont figure it > out how it works. I am a n

Re: Wizard and PasswordTextField

2007-10-23 Thread Fernando Wermus
"passwords do not match"); > > } > > } else { > > //you should comment out this one :) > > info("password: "+model.getInpPassword()+ " / > > "+model.getInpPasswordAgain()); > > //error("no passwor

Wizard and PasswordTextField

2007-10-23 Thread Fernando Wermus
In the Wizard example for singing up, I doesn't appear two PasswordTextField to verify if both were completed with the same password. I imagine this is something solved and then I was looking at google. At the same time it is something easy. How can I solve by my self? Just a guide. -- Fer

Re: Some help. I think I found a bug, but I am a wicket newbie anyway.

2007-10-17 Thread Fernando Wermus
connection between changing the style (position:absolute; width:0; height:0) in a div and AjaxTabPanel. Bye! On 10/17/07, Fernando Wermus <[EMAIL PROTECTED]> wrote: > > I fixed!!! It is working accurately now. Thanks a lot. > > On 10/17/07, Igor Vaynberg <[EMAIL PROTECTED

Re: Some help. I think I found a bug, but I am a wicket newbie anyway.

2007-10-17 Thread Fernando Wermus
I fixed!!! It is working accurately now. Thanks a lot. On 10/17/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > svn co https://svn.apache.org/repos/asf/wicket/trunk wicket > cd wicket > mvn install > > -igor > > > On 10/16/07, Fernando Wermus <[EMAIL PROTECTE

Re: Some help. I think I found a bug, but I am a wicket newbie anyway.

2007-10-16 Thread Fernando Wermus
because of that line. I need some help. I need to recompile the wicket extracting the "height:0px" from the code and I am not used to recompile libraries. Could anyone help me on the issue? Thanks a lot and in advance. On 10/17/07, Fernando Wermus <[EMAIL PROTECTED]> wrote: > >

Some help. I think I found a bug, but I am a wicket newbie anyway.

2007-10-16 Thread Fernando Wermus
return new NewUserWizard(panelId); } }); add(new TabbedPanel("tabs", solapas)); } Part of the html rendered Thanks in advance -- Fernando Wermus.

<    1   2   3