I took a look at the site and I have started implementing something similar.

I use a normal non-wicket form on the home page that posts to my mounted wicket 
page with the login form on it. I mounted my login registration page to 
"memberRegistration"

<form method="post" action="memberRegistration">
        <label for="user">User</label>
        <input id="user" type="text" name="user">
        <label for="pwd">Password</label>
        <input id="pwd" type="password" name="pwd">
        <input class="button" value="Log in" type="submit">
</form>

http://croptrak.emalan.com/Home

--
Eugene


On 01 Dec 2010, at 11:23 AM, 96silvia wrote:

> 
> I have this wicket form I want to use wicket to pass the phone number and
> contact email.
> 
> <wicket:extend>
> <form wicket:id="test" method="post" action="http://www.mypage.com";>
> <input type="hidden" wicket:id ="phoneNumber" name="phoneNumber">
> <input type="hidden" wicket:id ="contactEmail" name="email">
> </form>
> </wicket:extend>
> 
> my question is my java code passes the correct parameters for the phone
> number and the contact email.
> but overwrites the form action and places
> "wicket:interface=:10:opcForward::IFormSubmitListener::" I don't want this
> to happen I need to post these values to www.mypage.com 
> 
> is there a way to do this?
> I am using wicket 1.4.5, jdk6
> 
> 
> -- 
> View this message in context: 
> http://apache-wicket.1842946.n4.nabble.com/wicket-question-tp3067609p3067609.html
> Sent from the Users forum mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]

Reply via email to