Re: Can't get FormTester.submitLink to work (required testfield always missing)

2012-03-19 Thread Fabiosakiyam
Hi, Old post but, any solutions for this, using wicket tester? Thx -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Can-t-get-FormTester-submitLink-to-work-required-testfield-always-missing-tp1888944p4485338.html Sent from the Users forum mailing list archive at

Re: WicketTester setParameterForNextRequest() doubt

2011-12-03 Thread Fabiosakiyam
It worked with formTester, thanks :) But since im testing only my component, is there anyway to test it without needing a formTester? 'cause needing the formTester will make me create a blankPage just to add the component, and then create a html as well.. is there anyway to test a component/panel,

WicketTester setParameterForNextRequest() doubt

2011-12-02 Thread Fabiosakiyam
Hi guys, Im trying to test a component i've made using wicket tester, but im having a problem to assert a modelValue. Im trying to input data on my component fields, and then submit. The problem is, when i try to assertModelValue, it says it's empty. My component is declared like this, in a

Re: Dynamic component?

2011-11-28 Thread Fabiosakiyam
Thanks, using only 1 id for my panels worked. I tried this before, but i wasnt using panels (containers instead). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Dynamic-component-tp4107323p4115163.html Sent from the Users forum mailing list archive at Nabble.com.

Re: AW: Dynamically choosing component to add

2011-11-25 Thread Fabiosakiyam
Hi Bertrand, I have almost the same problem you do (i think, im still a newbie). I'm trying to create a component that creates one specific container, depending on it's type. So i'd like to add only this container. I'm having problem at the .html, since i don't know if i should declare all

Dynamic component?

2011-11-25 Thread Fabiosakiyam
Hello, Sorry if this is already solved, but i couldn't find it, 'cause i don't really know what is the name of this, that's why the subject is weird. Ok so, im creating a new component (extends panel), and his .java is something like this: class Component { getType().buildContainer(); } It