Re: techniques using of Form

2014-02-14 Thread Farrukh SATTOROV
thanks!, Lucas


On Fri, Feb 14, 2014 at 9:23 PM, lucast  wrote:

> Hi Farrukh,
> From existing literature (Wicket in Action, Apache wicket Cookbook,  wicket
> guide <http://wicket.apache.org/guide/guide/index.html>  ), there are a
> number of ways you can go about it.
>
> You can put your form in a panel, have a submit once form (to prevent
> multiple submits) as template and extend that class. It all depends on what
> your needs are.
>
> FormComponentPanels are also very useful.
>
> I'm sure people in this forum have better and more extensive suggestions
> than me but at least, that's a starter.
> Both the Apache wicket Cookbook and wicket guide are good starting points
> for creating your own best practices.
>
> I hope that helps,
> Lucas
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/techniques-using-of-Form-tp4664459p4664463.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- 
С уважением и наилучшими пожеланиями
*Фаррух*


Re: techniques using of Form

2014-02-14 Thread lucast
Hi Farrukh,
>From existing literature (Wicket in Action, Apache wicket Cookbook,  wicket
guide <http://wicket.apache.org/guide/guide/index.html>  ), there are a
number of ways you can go about it.

You can put your form in a panel, have a submit once form (to prevent
multiple submits) as template and extend that class. It all depends on what
your needs are.

FormComponentPanels are also very useful.

I'm sure people in this forum have better and more extensive suggestions
than me but at least, that's a starter. 
Both the Apache wicket Cookbook and wicket guide are good starting points
for creating your own best practices.

I hope that helps,
Lucas

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/techniques-using-of-Form-tp4664459p4664463.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



techniques using of Form

2014-02-14 Thread Farrukh SATTOROV
What is best practices to flexible use of Form: to do external subclass
MyForm, to do as instance MyForm inside Panel constructor or inner class of
MyForm inside Panel class ?