[Wicket-user] Compare JSP Vs Wicket

2007-08-09 Thread Edi

Please send me all your suggestions.

including the below question

In jsp, I can pass the values using query string

for eg. form action=actionJSP.jsp?userName=edipassword=edi

using request.getParameter(userName); I can get the userName.
using request.getParameter(password); I can get the password.

In wicket, how can we do that?

And send all notes regarding Compare JSP Vs Wicket

Thanking You.

-- 
View this message in context: 
http://www.nabble.com/Compare-JSP-Vs-Wicket-tf4242739.html#a12072743
Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] [Question] wicket.markup.html.form.Radio

2007-08-09 Thread jq58

This works to an extent.  It appears that sometimes (totally random as far as
I can tell) I have to click twice to get it to actually invoke the ajax
action.

But, once it is invoked, I am trying to enable the drop down and disable the
text box via: 
[code]
  private void setupAjaxRadio(final Panel panel, 
  final RadioGroup radioGroup, 
  final Radio radio) { 
radioGroup.add(radio.add(new AjaxEventBehavior(onchange) { 

private static final long serialVersionUID = 1L;
protected void onEvent(AjaxRequestTarget target) { 
radioGroup.processInput(); 
if
(radioGroup.getConvertedInput().equals(Component.getApplyToRadioGroupChoices().get(Component.AMOUNT_TYPE_GLOBAL))
) {
radioGroup.get(percentGFId).setEnabled(true);
radioGroup.get(amount).setEnabled(false);
} else {
radioGroup.get(percentGFId).setEnabled(false);
radioGroup.get(amount).setEnabled(true);
}
target.addComponent(panel); 
} 
[/code]

However, the enabling and disabling of the controls under the radio group
are being ignored.
Any idea why?

Thanks.

Kent Tong wrote:
 
 Alex Objelean alexandru.objelean at isdc.ro writes:
 
 Thank you Jan! Sad thing is that 1.2.x branch will never support this
 feature.
 
 Try:
 
 Form f = ...;
 RadioGroup rg2 = new RadioGroup(rg2, ...);
 rg2.setOutputMarkupId(true);
 setupAjaxRadio(f, rg2, new Radio(r3, new Model(abc)));
 setupAjaxRadio(f, rg2, new Radio(r4, new Model(def)));
 ...
 
   private void setupAjaxRadio(final Form form, 
   final RadioGroup radioGroup,
   final Radio radio) {
 radioGroup.add(radio.add(new AjaxEventBehavior(onchange) {
   protected void onEvent(AjaxRequestTarget target) {
 radioGroup.processInput();
 target.addComponent(form);
   }
   protected CharSequence getEventHandler() {
 return getCallbackScript(new AppendingStringBuffer(
 wicketAjaxPost(').append(getCallbackUrl()).append(
 ', wicketSerialize(document.getElementById('
 + radio.getMarkupId() + '))), null, null);
   }
 
 }));
   }
 
 
 
 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 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--wicket.markup.html.form.Radio-tf3926549.html#a12073369
Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Custom ISessionStore

2007-08-09 Thread Seldon, Richard
 
Hello. Does anyone have any working example implementations of a custom
ISessionStore. 
Perhaps writing to disk / database etc. Hoping to get up to speed v.quickly.
Best regards,

Richard.


This e-mail (and any attachments) may contain privileged and/or confidential 
information. If you are not the intended recipient please do not disclose, 
copy, distribute, disseminate or take any action in reliance on it. If you have 
received this message in error please reply and tell us and then delete it. 
Should you wish to communicate with us by e-mail we cannot guarantee the 
security of any data outside our own computer systems. For the protection of 
Legal  General's systems and staff, incoming emails will be automatically 
scanned.

Any information contained in this message may be subject to applicable terms 
and conditions and must not be construed as giving investment advice within or 
outside the United Kingdom.

The following companies are subsidiary companies of the Legal  General Group 
Plc which are authorised and regulated by the Financial Services Authority for 
advising and arranging the products shown: Legal  General Partnership Services 
Limited (insurance and mortgages), Legal  General Insurance Limited 
(insurance), Legal  General Assurance Society Limited 
(life assurance, pensions and investments), Legal  General Unit Trust Managers 
Limited and Legal  General Portfolio Management Services Limited (investments).

They are registered in England under numbers shown.
The registered office is Temple Court, 11 Queen Victoria Street, London EC4N 
4TP.

Legal  General Partnership Services Limited: 5045000 Legal  General Assurance 
Society Limited: 166055 Legal  General (Unit Trust Managers) Limited: 1009418 
Legal  General (Portfolio Management Services) Limited: 2457525 Legal  
General Insurance Limited: 423930

They are registered with the Financial Services Authority under numbers shown. 
You can check this at www.fsa.gov.uk/register

Legal  General Partnership Services Limited: 300792 Legal  General Assurance 
Society Limited: 117659 Legal  General (Unit Trust Managers) Limited: 119273 
Legal  General (Portfolio Management Services) Limited: 146786 Legal  General 
Insurance Limited: 202050


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Custom ISessionStore

2007-08-09 Thread Igor Vaynberg
DiskPageStore , SecondLevelCacheSessionStore in core

-igor


On 8/9/07, Seldon, Richard [EMAIL PROTECTED] wrote:


 Hello. Does anyone have any working example implementations of a custom
 ISessionStore.
 Perhaps writing to disk / database etc. Hoping to get up to speed
 v.quickly.
 Best regards,

 Richard.


 This e-mail (and any attachments) may contain privileged and/or
 confidential information. If you are not the intended recipient please do
 not disclose, copy, distribute, disseminate or take any action in reliance
 on it. If you have received this message in error please reply and tell us
 and then delete it. Should you wish to communicate with us by e-mail we
 cannot guarantee the security of any data outside our own computer systems.
 For the protection of Legal  General's systems and staff, incoming emails
 will be automatically scanned.

 Any information contained in this message may be subject to applicable
 terms and conditions and must not be construed as giving investment advice
 within or outside the United Kingdom.

 The following companies are subsidiary companies of the Legal  General
 Group Plc which are authorised and regulated by the Financial Services
 Authority for advising and arranging the products shown: Legal  General
 Partnership Services Limited (insurance and mortgages), Legal  General
 Insurance Limited (insurance), Legal  General Assurance Society Limited
 (life assurance, pensions and investments), Legal  General Unit Trust
 Managers Limited and Legal  General Portfolio Management Services Limited
 (investments).

 They are registered in England under numbers shown.
 The registered office is Temple Court, 11 Queen Victoria Street, London
 EC4N 4TP.

 Legal  General Partnership Services Limited: 5045000 Legal  General
 Assurance Society Limited: 166055 Legal  General (Unit Trust Managers)
 Limited: 1009418 Legal  General (Portfolio Management Services) Limited:
 2457525 Legal  General Insurance Limited: 423930

 They are registered with the Financial Services Authority under numbers
 shown. You can check this at www.fsa.gov.uk/register

 Legal  General Partnership Services Limited: 300792 Legal  General
 Assurance Society Limited: 117659 Legal  General (Unit Trust Managers)
 Limited: 119273 Legal  General (Portfolio Management Services) Limited:
 146786 Legal  General Insurance Limited: 202050


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:

 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicketstuff-hibernate-behavior

2007-08-09 Thread Craig Lenzen

I took a look at it last night, looks like there is more work that needs to
be done, i.e. it only supports the NotNull  Length annotations.  Just don't
want to go done the path of making changes while someone else might be doing
the same work, thus why I'm asking the user list if this project is active
or should I say being actively worked on.

-Craig 


igor.vaynberg wrote:
 
 some projects have small scope, and once that scope is covered there is
 simply nothing more to do. have you checked it out - does something not
 work
 for you?
 
 -igor
 
 
 On 8/8/07, Craig Lenzen [EMAIL PROTECTED] wrote:


 Does anyone know if this project is active or not? IE, is someone
 actively
 doing development on this project?

 Thanks
 Craig
 --
 View this message in context:
 http://www.nabble.com/wicketstuff-hibernate-behavior-tf4240106.html#a12064913
 Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:

 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:
 
 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 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/wicketstuff-hibernate-behavior-tf4240106.html#a12074888
Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Custom ISessionStore

2007-08-09 Thread Eelco Hillenius
On 8/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote:
 DiskPageStore , SecondLevelCacheSessionStore in core

In 1.3

Eelco

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Custom ISessionStore

2007-08-09 Thread Matej Knopp
There is SimpleSynchronousFilePageStore in trunk that acts as a simple
example implementation of IPageStore. Beware, it's slow and
unoptimized, as it's is only for example purposes.

If you need fast IPageStore try DiskPageStore.

-Matej

On 8/9/07, Igor Vaynberg [EMAIL PROTECTED] wrote:
 DiskPageStore , SecondLevelCacheSessionStore in core

 -igor


 On 8/9/07, Seldon, Richard [EMAIL PROTECTED] wrote:
 
 
  Hello. Does anyone have any working example implementations of a custom
  ISessionStore.
  Perhaps writing to disk / database etc. Hoping to get up to speed
  v.quickly.
  Best regards,
 
  Richard.
 
 
  This e-mail (and any attachments) may contain privileged and/or
  confidential information. If you are not the intended recipient please do
  not disclose, copy, distribute, disseminate or take any action in reliance
  on it. If you have received this message in error please reply and tell us
  and then delete it. Should you wish to communicate with us by e-mail we
  cannot guarantee the security of any data outside our own computer systems.
  For the protection of Legal  General's systems and staff, incoming emails
  will be automatically scanned.
 
  Any information contained in this message may be subject to applicable
  terms and conditions and must not be construed as giving investment advice
  within or outside the United Kingdom.
 
  The following companies are subsidiary companies of the Legal  General
  Group Plc which are authorised and regulated by the Financial Services
  Authority for advising and arranging the products shown: Legal  General
  Partnership Services Limited (insurance and mortgages), Legal  General
  Insurance Limited (insurance), Legal  General Assurance Society Limited
  (life assurance, pensions and investments), Legal  General Unit Trust
  Managers Limited and Legal  General Portfolio Management Services Limited
  (investments).
 
  They are registered in England under numbers shown.
  The registered office is Temple Court, 11 Queen Victoria Street, London
  EC4N 4TP.
 
  Legal  General Partnership Services Limited: 5045000 Legal  General
  Assurance Society Limited: 166055 Legal  General (Unit Trust Managers)
  Limited: 1009418 Legal  General (Portfolio Management Services) Limited:
  2457525 Legal  General Insurance Limited: 423930
 
  They are registered with the Financial Services Authority under numbers
  shown. You can check this at www.fsa.gov.uk/register
 
  Legal  General Partnership Services Limited: 300792 Legal  General
  Assurance Society Limited: 117659 Legal  General (Unit Trust Managers)
  Limited: 119273 Legal  General (Portfolio Management Services) Limited:
  146786 Legal  General Insurance Limited: 202050
 
 
  -
  This SF.net email is sponsored by: Splunk Inc.
  Still grepping through log files to find problems?  Stop.
  Now Search log events and configuration files using AJAX and a browser.
  Download your FREE copy of Splunk now   http://get.splunk.com/
  ___
  IMPORTANT NOTICE:
 
  This mailing list is shutting down. Please subscribe to the Apache Wicket
  user list. Send a message to: users-subscribe at wicket.apache.org and
  follow the instructions.
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:

 This mailing list is shutting down. Please subscribe to the Apache Wicket 
 user list. Send a message to: users-subscribe at wicket.apache.org and 
 follow the instructions.
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Compare JSP Vs Wicket

2007-08-09 Thread Johan Compagner
for bookmarkable pages see pageparamer constructor,
else
RequestCycle.get.getRequest().getParameters(). But you should be
looking at what you are trying to do.. think differently

On 8/9/07, Edi [EMAIL PROTECTED] wrote:

 Please send me all your suggestions.

 including the below question

 In jsp, I can pass the values using query string

 for eg. form action=actionJSP.jsp?userName=edipassword=edi

 using request.getParameter(userName); I can get the userName.
 using request.getParameter(password); I can get the password.

 In wicket, how can we do that?

 And send all notes regarding Compare JSP Vs Wicket

 Thanking You.

 --
 View this message in context:
 http://www.nabble.com/Compare-JSP-Vs-Wicket-tf4242739.html#a12072743
 Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:

 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Compare JSP Vs Wicket

2007-08-09 Thread Edi

I am a Java, JSP Programmer. Now I am studying wicket. That's why I am asking
Your all Suggestions.

Thanking You.


Johan Compagner wrote:
 
 for bookmarkable pages see pageparamer constructor,
else
 RequestCycle.get.getRequest().getParameters(). But you should be
 looking at what you are trying to do.. think differently
 
 On 8/9/07, Edi [EMAIL PROTECTED] wrote:

 Please send me all your suggestions.

 including the below question

 In jsp, I can pass the values using query string

 for eg. form action=actionJSP.jsp?userName=edipassword=edi

 using request.getParameter(userName); I can get the userName.
 using request.getParameter(password); I can get the password.

 In wicket, how can we do that?

 And send all notes regarding Compare JSP Vs Wicket

 Thanking You.

 --
 View this message in context:
 http://www.nabble.com/Compare-JSP-Vs-Wicket-tf4242739.html#a12072743
 Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:

 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 -
 This SF.net email is sponsored by: Splunk Inc.
 Still grepping through log files to find problems?  Stop.
 Now Search log events and configuration files using AJAX and a browser.
 Download your FREE copy of Splunk now   http://get.splunk.com/
 ___
 IMPORTANT NOTICE:
 
 This mailing list is shutting down. Please subscribe to the Apache Wicket
 user list. Send a message to: users-subscribe at wicket.apache.org and
 follow the instructions.
 ___
 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/Compare-JSP-Vs-Wicket-tf4242739.html#a12085069
Sent from the Wicket - User (OLD) mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Compare JSP Vs Wicket

2007-08-09 Thread Eelco Hillenius
 I am a Java, JSP Programmer. Now I am studying wicket. That's why I am asking
 Your all Suggestions.

Best way is to create a test application with both. Start simple and
gradually improve the complexity of your examples. You'll find out
what you like better soon enough.

Also, you can take a look at
http://www.virtuas.com/articles/webframework-sweetspots.html

Eelco

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
IMPORTANT NOTICE:

This mailing list is shutting down. Please subscribe to the Apache Wicket user 
list. Send a message to: users-subscribe at wicket.apache.org and follow the 
instructions.
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user