Re: [Wicket-user] Question on reusability

2006-11-05 Thread sunraider

Hi,

Is there any example or sample to refer to a similar implementation? It will
be really helpful if there one. I am a newbie to Wicket so dont have much of
an idea on how that can be done.

Thanks Igor for the help.

Thanks,
Sajeev


igor.vaynberg wrote:
 
 i create editor classes for editing compound beans. editor classes are
 just
 panels with field components added to them. that way i can drop the panel
 into any form and have it work.
 
 -igor
 
 
 On 11/2/06, sunraider [EMAIL PROTECTED] wrote:


 Hi All,

 I have a usecase but I dont know which would be the best approach to
 achieve
 it. It goes like this:

 1. I have Address which is common in most of the pages.
 2. I want to use the Address in Company
 3. I want to use the Company with Address in MyCompany.

 I am not sure how to achieve it. Can anyone post me a sample how to
 resuse
 address in company and reuse company in mycompany or something similar.
 This
 is generic in most of my pages. I am not sure but Panel looks like the
 correct option. But do we need mutliple forms like AddressForm
 CompanyForm
 and MyCompanyForm. I am not sure if this sounds stupid or it might be my
 lack of wicket knowledge (newbie). I just wanted to know the correct way
 of
 doing this.

 Thanks in advance.
 --
 View this message in context:
 http://www.nabble.com/Question-on-reusability-tf2566480.html#a7153216
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/Question-on-reusability-tf2566480.html#a7185863
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question on reusability

2006-11-05 Thread Igor Vaynberg
i dont know if there are any examples, but it is as easy as it sounds.create a panel that adds a bunch of form components to itself, then stick this panel into a form, thats it-igor
On 11/5/06, sunraider [EMAIL PROTECTED] wrote:
Hi,Is there any example or sample to refer to a similar implementation? It willbe really helpful if there one. I am a newbie to Wicket so dont have much ofan idea on how that can be done.Thanks Igor for the help.
Thanks,Sajeevigor.vaynberg wrote: i create editor classes for editing compound beans. editor classes are just panels with field components added to them. that way i can drop the panel
 into any form and have it work. -igor On 11/2/06, sunraider [EMAIL PROTECTED] wrote: Hi All,
 I have a usecase but I dont know which would be the best approach to achieve it. It goes like this: 1. I have Address which is common in most of the pages.
 2. I want to use the Address in Company 3. I want to use the Company with Address in MyCompany. I am not sure how to achieve it. Can anyone post me a sample how to resuse
 address in company and reuse company in mycompany or something similar. This is generic in most of my pages. I am not sure but Panel looks like the correct option. But do we need mutliple forms like AddressForm
 CompanyForm and MyCompanyForm. I am not sure if this sounds stupid or it might be my lack of wicket knowledge (newbie). I just wanted to know the correct way of doing this.
 Thanks in advance. -- View this message in context: http://www.nabble.com/Question-on-reusability-tf2566480.html#a7153216
 Sent from the Wicket - User mailing list archive at Nabble.com. -
 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user--View this message in context: 
http://www.nabble.com/Question-on-reusability-tf2566480.html#a7185863Sent from the Wicket - User mailing list archive at 
Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question on reusability

2006-11-05 Thread sunraider

Thank you Igor, I will try that out.

Thanks,
Sajeev


igor.vaynberg wrote:
 
 i dont know if there are any examples, but it is as easy as it sounds.
 
 create a panel that adds a bunch of form components to itself, then stick
 this panel into a form, thats it
 
 -igor
 
 
 On 11/5/06, sunraider [EMAIL PROTECTED] wrote:


 Hi,

 Is there any example or sample to refer to a similar implementation? It
 will
 be really helpful if there one. I am a newbie to Wicket so dont have much
 of
 an idea on how that can be done.

 Thanks Igor for the help.

 Thanks,
 Sajeev


 igor.vaynberg wrote:
 
  i create editor classes for editing compound beans. editor classes are
  just
  panels with field components added to them. that way i can drop the
 panel
  into any form and have it work.
 
  -igor
 
 
  On 11/2/06, sunraider [EMAIL PROTECTED] wrote:
 
 
  Hi All,
 
  I have a usecase but I dont know which would be the best approach to
  achieve
  it. It goes like this:
 
  1. I have Address which is common in most of the pages.
  2. I want to use the Address in Company
  3. I want to use the Company with Address in MyCompany.
 
  I am not sure how to achieve it. Can anyone post me a sample how to
  resuse
  address in company and reuse company in mycompany or something
 similar.
  This
  is generic in most of my pages. I am not sure but Panel looks like the
  correct option. But do we need mutliple forms like AddressForm
  CompanyForm
  and MyCompanyForm. I am not sure if this sounds stupid or it might be
 my
  lack of wicket knowledge (newbie). I just wanted to know the correct
 way
  of
  doing this.
 
  Thanks in advance.
  --
  View this message in context:
  http://www.nabble.com/Question-on-reusability-tf2566480.html#a7153216
  Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 --
 View this message in context:
 http://www.nabble.com/Question-on-reusability-tf2566480.html#a7185863
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/Question-on-reusability-tf2566480.html#a7193383
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Question on reusability

2006-11-02 Thread sunraider

Hi All,

I have a usecase but I dont know which would be the best approach to achieve
it. It goes like this:

1. I have Address which is common in most of the pages.
2. I want to use the Address in Company
3. I want to use the Company with Address in MyCompany.

I am not sure how to achieve it. Can anyone post me a sample how to resuse
address in company and reuse company in mycompany or something similar. This
is generic in most of my pages. I am not sure but Panel looks like the
correct option. But do we need mutliple forms like AddressForm CompanyForm
and MyCompanyForm. I am not sure if this sounds stupid or it might be my
lack of wicket knowledge (newbie). I just wanted to know the correct way of
doing this.

Thanks in advance.
-- 
View this message in context: 
http://www.nabble.com/Question-on-reusability-tf2566480.html#a7153216
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Question on reusability

2006-11-02 Thread Igor Vaynberg
i create editor classes for editing compound beans. editor classes are just panels with field components added to them. that way i can drop the panel into any form and have it work.-igor
On 11/2/06, sunraider [EMAIL PROTECTED] wrote:
Hi All,I have a usecase but I dont know which would be the best approach to achieveit. It goes like this:1. I have Address which is common in most of the pages.2. I want to use the Address in Company
3. I want to use the Company with Address in MyCompany.I am not sure how to achieve it. Can anyone post me a sample how to resuseaddress in company and reuse company in mycompany or something similar. This
is generic in most of my pages. I am not sure but Panel looks like thecorrect option. But do we need mutliple forms like AddressForm CompanyFormand MyCompanyForm. I am not sure if this sounds stupid or it might be my
lack of wicket knowledge (newbie). I just wanted to know the correct way ofdoing this.Thanks in advance.--View this message in context: 
http://www.nabble.com/Question-on-reusability-tf2566480.html#a7153216Sent from the Wicket - User mailing list archive at Nabble.com.-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user