Re: Javadoc problem ?

2008-03-23 Thread Eyal Golan
ok,
I encountered this problem while looking for AbstractColumn and IColumn.
I guess there are more?

On Thu, Mar 20, 2008 at 5:46 PM, Martijn Dashorst 
[EMAIL PROTECTED] wrote:

 It would help if you would specify which classes you miss.

 Martijn

 On 3/20/08, Eyal Golan [EMAIL PROTECTED] wrote:
  Has anyone noticed that there are many missing classes in
   http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/index.html
 
   Or am I missing something?
 
  --
   Eyal Golan
   [EMAIL PROTECTED]
 
   Visit: http://jvdrums.sourceforge.net/
 


 --
 Buy Wicket in Action: http://manning.com/dashorst
 Apache Wicket 1.3.2 is released
 Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.2

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Eyal Golan
[EMAIL PROTECTED]

Visit: http://jvdrums.sourceforge.net/


Re: Seam Wicket integration and conversation scope

2008-03-23 Thread Paolo Di Tommaso
Nice and interesting. This could be a valid alternative to simulate the Seam
conversation-scoped persistent context.

Although doing so the presentation layer is too tied to persistent session
handling aspect. I think this could be really useful in a simple scenario
with few pages, but in complex use causes (and integrating other frameworks
like jbpm that need to share the same hibernate session) it will drive in a
hell.


Thank you.

// Paolo

On Sun, Mar 23, 2008 at 2:25 AM, Igor Vaynberg [EMAIL PROTECTED]
wrote:

 conversation scope is slightly different, for long running hibernate
 sessions it is an equivalent of doing:

 class conversationpage extends webpage {
  private org.hibernate.Session session;

  public conversationpage(Session session) {
this.session=session;
  }

  protected Session getSession() {
if (!session.isconnected()) { session.reconnect(); }
return session;
  }

  protected void ondetach() { session.disconnect(); }
 }

 so in this case the conversation would be propogated so:

 setresponsepage(new edituserstep2page(getsession(), usermodel));

 -igor


 On Sat, Mar 22, 2008 at 6:13 PM, brian.diekelman [EMAIL PROTECTED]
 wrote:
 
   I have only read up on Seam a few times, so help me out where I'm
   incorrect...
 
   As far as I can tell Seam uses the conversation scope as a step between
   request scope and session scope to persist values across a couple of
   requests, for instance a user creation wizard, etc.
 
   I don't know what integration they've enabled or how it works, but
 passing
   an object between requests is simple and straight forward in wicket.
  Say
   that you want to pass a user object (or any other combination of
 objects)
   from one page to another when the user clicks a link:
 
   public class SimplePage extends WebPage
   {
public SimplePage(final User user)
{
  add(new Link(link)
  {
public void onClick()
{
  setResponsePage(new SomeOtherPage(user));
}
  }
}
   }
 
   You would pass it directly by reference.  Like I said, I don't know how
 Seam
   is integrating, but when you're using Wicket you don't really have a
 need
   for something like a conversation scope.  You can use whatever
 granularity
   you'd like to pass objects between pages, not necessarily bound to any
   particular scope.
 
   Please let me know if I'm just completely missing your point here.
 
   --
   View this message in context:
 http://www.nabble.com/Seam-Wicket-integration-and-conversation-scope-tp16228793p16230158.html
   Sent from the Wicket - User mailing list archive at Nabble.com.
 
 
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: Localization of DropDownChoice

2008-03-23 Thread Erik van Oosten

Hi Greeklinux,

Please see my earlier reply on a similar question.
http://www.nabble.com/DropDownChoice-getting-value-into-the-model-td15905486.html#a15906830

I am not sure the wiki page is correct.

Regards,
   Erik.


greeklinux wrote:

Hello,

I want to localize a DropDownChoice component. I read the examples
http://www.wicket-library.com/wicket-examples/compref/
and http://cwiki.apache.org/WICKET/dropdownchoice-examples.html.

The displayed option value is a localized string and the value is a key that
will be stored in DB.

Now I want to get the value of a selected option and store this in a form
CompoundPropertyModel.
The Object backing the model will be stored in DB.

-code

private SelectChoise[] myList = {
new SelectChoise(alglg, new ResourceModel(list.alglg)),
new SelectChoise(algmd, new ResourceModel(list.algmd)) }



DropDownChoice listInput = new DropDownChoice(listInput, formModel,
Arrays.asList(myList), new ChoiceRenderer(value, key));

--


But I get a runtime exception. Because the expression key cannot be
applied on the class that is backing
my formModel. I thought that the key is applied on the List SelectChoise
class.

Can someone give me a hint?

Thanks a lot

  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket in Action - 1.4 pending release

2008-03-23 Thread Ned Collyer

Heh, nah :) the book is great so far.

I know generics is pretty much just a syntactic nicety, so it doesn't matter
one way or the other.

Perhaps a good way to sell a sequel ;)


quot;C.quot; Bergström wrote:
 
 You must want Martijn or Eelco to really hurt you huh? ;)
 
 I just want to congratulate them on all the hard work thus far...
 
 ./C
 

-- 
View this message in context: 
http://www.nabble.com/Wicket-in-Action---1.4-pending-release-tp16228144p16232646.html
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket in Action - 1.4 pending release

2008-03-23 Thread Johan Compagner
Yeah for 2.0 they can make a new revision 'wicket in action 2'

On 3/23/08, Ned Collyer [EMAIL PROTECTED] wrote:

 Heh, nah :) the book is great so far.

 I know generics is pretty much just a syntactic nicety, so it doesn't matter
 one way or the other.

 Perhaps a good way to sell a sequel ;)


 quot;C.quot; Bergström wrote:
 
  You must want Martijn or Eelco to really hurt you huh? ;)
 
  I just want to congratulate them on all the hard work thus far...
 
  ./C
 

 --
 View this message in context:
 http://www.nabble.com/Wicket-in-Action---1.4-pending-release-tp16228144p16232646.html
 Sent from the Wicket - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Javadoc problem ?

2008-03-23 Thread Eyal Golan
hmmm,
Well, found them.
Thanks

2008/3/20 Sergej Logis [EMAIL PROTECTED]:

 I assume missing classes are all from wicket-extensions package.
 There is (somewhat hidden) link to the missing part:
 http://wicket.apache.org/docs/wicket-1.3.2/wicket-extensions/index.html

 ---
 Sincerely,
 Sergej Logiš
 Software developer
 Exigen Services
 ICQ: 12510115



 Martijn Dashorst [EMAIL PROTECTED]
 2008.03.20 17:46
 Please respond to
 users@wicket.apache.org


 To
 users@wicket.apache.org
 cc

 Subject
 Re: Javadoc problem ?






 It would help if you would specify which classes you miss.

 Martijn

 On 3/20/08, Eyal Golan [EMAIL PROTECTED] wrote:
  Has anyone noticed that there are many missing classes in
   http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/index.html
 
   Or am I missing something?
 
  --
   Eyal Golan
   [EMAIL PROTECTED]
 
   Visit: http://jvdrums.sourceforge.net/
 


 --
 Buy Wicket in Action: http://manning.com/dashorst
 Apache Wicket 1.3.2 is released
 Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.2

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





-- 
Eyal Golan
[EMAIL PROTECTED]

Visit: http://jvdrums.sourceforge.net/


Label and textfiled component

2008-03-23 Thread Eyal Golan
Hello,
Has anyone made a component that is made out of a Label and a TextField.
I am looking for something like that.

I have a situation as follows:
If a TextField is supposed to be read-only, I am adding an AttributeModifier
with a class name for styling.
I want that the label associated to this field will also get an
AttributeModifier.

So the situation is: associating a label with a textfield.

Hope I was clear

-- 
Eyal Golan
[EMAIL PROTECTED]

Visit: http://jvdrums.sourceforge.net/


[release] Wicket 1.2.7 released: last maintenance release

2008-03-23 Thread Martijn Dashorst
The Wicket team announces the last maintenance release of Wicket 1.2:
Wicket 1.2.7.

This release fixes the remaining issues for Wicket 1.2. For future
support we ask you to upgrade to Apache Wicket 1.3 or newer.

This release of the Wicket project is not endorsed or approved by the
Apache Software Foundation. The Apache Software Foundation is in no
way affiliated with this release.

Below are the release notes for Wicket 1.2.7.

 - the Wicket team

Release Notes - Wicket - Version 1.2.7

** Bug
* [WICKET-117] - Page expired using ajax
* [WICKET-311] - race condition between
wicket.session.pagemap.LeastRecentlyAccessedEvictionStrategy and
Session.getPage()
* [WICKET-312] - AjaxFormComponentUpdatingBehavior doesn't call
onError when FormComponent is not valid
* [WICKET-349] - ListView can't undo changes to model
* [WICKET-427] -
WebRequestCodingStrategy.urlCodingStrategyForPath() passes null as key
* [WICKET-487] - Buggy behaviour in
PageMap.access(IPageMapEntry,int). Wicket1.2.4
* [WICKET-511] - New ServletWebRequest.getParameterMap()
implementation changed between 1.2.5 and 1.2.6
* [WICKET-524] - ClassCastException in WebRequestCodingStrategy
* [WICKET-540] -  ServletWebRequest.getContextPath() ignores
ContextPath as set by user (accesses HttpServletRequest directly)
* [WICKET-546] - SubmitLink issue : Need for handling user's own
onclick javascript call + defaultmodification in onComponentTag
call.
* [WICKET-571] - AjaxLinks throws java.lang.ClassCastException
* [WICKET-593] - equals() in ResourceStreamRequestTarget compares
the wrong filename
* [WICKET-623] - Backport call to super onComponentTag in ExternalLink
* [WICKET-642] - Need to escape select html option value
* [WICKET-828] - Using form method=get does not work
* [WICKET-943] - java.lang.NullPointerException at
wicket.markup.html.list.ListView.renderItem(ListView.java:676)
* [WICKET-1076] - SubmitLink component does not render markup id

** Improvement
* [WICKET-1145] - Patch for allowing input type=search/  to be
serialized

** New Feature
* [WICKET-786] - Add deny capability to AuthorizeAction

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [release] Wicket 1.2.7 released: last maintenance release

2008-03-23 Thread Martijn Dashorst
You can download the release here:

http://sourceforge.net/project/platformdownload.php?group_id=119783

Or update the wicket version in your maven pom's to 1.2.7.

Martijn

On 3/23/08, Martijn Dashorst [EMAIL PROTECTED] wrote:
 The Wicket team announces the last maintenance release of Wicket 1.2:
  Wicket 1.2.7.

  This release fixes the remaining issues for Wicket 1.2. For future
  support we ask you to upgrade to Apache Wicket 1.3 or newer.

  This release of the Wicket project is not endorsed or approved by the
  Apache Software Foundation. The Apache Software Foundation is in no
  way affiliated with this release.

  Below are the release notes for Wicket 1.2.7.

   - the Wicket team

  Release Notes - Wicket - Version 1.2.7

  ** Bug
 * [WICKET-117] - Page expired using ajax
 * [WICKET-311] - race condition between
  wicket.session.pagemap.LeastRecentlyAccessedEvictionStrategy and
  Session.getPage()
 * [WICKET-312] - AjaxFormComponentUpdatingBehavior doesn't call
  onError when FormComponent is not valid
 * [WICKET-349] - ListView can't undo changes to model
 * [WICKET-427] -
  WebRequestCodingStrategy.urlCodingStrategyForPath() passes null as key
 * [WICKET-487] - Buggy behaviour in
  PageMap.access(IPageMapEntry,int). Wicket1.2.4
 * [WICKET-511] - New ServletWebRequest.getParameterMap()
  implementation changed between 1.2.5 and 1.2.6
 * [WICKET-524] - ClassCastException in WebRequestCodingStrategy
 * [WICKET-540] -  ServletWebRequest.getContextPath() ignores
  ContextPath as set by user (accesses HttpServletRequest directly)
 * [WICKET-546] - SubmitLink issue : Need for handling user's own
  onclick javascript call + defaultmodification in onComponentTag
  call.
 * [WICKET-571] - AjaxLinks throws java.lang.ClassCastException
 * [WICKET-593] - equals() in ResourceStreamRequestTarget compares
  the wrong filename
 * [WICKET-623] - Backport call to super onComponentTag in ExternalLink
 * [WICKET-642] - Need to escape select html option value
 * [WICKET-828] - Using form method=get does not work
 * [WICKET-943] - java.lang.NullPointerException at
  wicket.markup.html.list.ListView.renderItem(ListView.java:676)
 * [WICKET-1076] - SubmitLink component does not render markup id

  ** Improvement
 * [WICKET-1145] - Patch for allowing input type=search/  to be
  serialized

  ** New Feature
 * [WICKET-786] - Add deny capability to AuthorizeAction



-- 
Buy Wicket in Action: http://manning.com/dashorst
Apache Wicket 1.3.2 is released
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.2

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Wicket dojo DragAndDrop problem

2008-03-23 Thread Stefan Lindner
I have stripped it down to a little demnstation application (a complete Eclipse 
projet, ready for build/deploy). Where can I put it? Should I open a issue for 
wicket (even if it's related to wicket extensions)?

Stefan

-Ursprüngliche Nachricht-
Von: Igor Vaynberg [mailto:[EMAIL PROTECTED] 
Gesendet: Dienstag, 18. März 2008 17:34
An: users@wicket.apache.org
Betreff: Re: Wicket dojo DragAndDrop problem
Wichtigkeit: Hoch

can you please provide a quickstart for this. seems like a 1.3.2 problem if the 
reason is indeed that wicket ignores header contributions.

-igor


On Tue, Mar 18, 2008 at 2:32 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
 I try to use Wicket 1.3.2 together with wicketstuff dojo (both 1.3.0  
 beta and 1.3.0 latest) Everything works fine if I deploy my 
 applicatioin  in development mode. Some lines like

 DEBUG:  Initialized drop contianer for dropContainer01, dropIds:
  *,
 DEBUG:  Callback url base:
  
 ?wicket:interface=:0:dropContainer0::IActivePageBehaviorListener:0:am
 p;
  wicket:ignoreIfNotActive=true

  are shown on my page but the functionality is perfect. I use the 
 Custom  drag and drop classes from the dojo examples achive. But when 
 I switch  to deploymnet mode

 context-param
 param-nameconfiguration/param-name
 param-valuedeployment/param-value
 /context-param

  Nothing works anymore. Can't even drag the source object. Looks like 
 no  javascript library was loaded.
  What am I doing wrong? Any idea?

  Stefan

  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Seam Wicket integration and conversation scope

2008-03-23 Thread Igor Vaynberg
i didnt say to do that. i simply said that this is what persistent
context means...and that session object in my example is the hibernate
session.

-igor


On Sun, Mar 23, 2008 at 1:21 AM, Paolo Di Tommaso
[EMAIL PROTECTED] wrote:
 Nice and interesting. This could be a valid alternative to simulate the Seam
  conversation-scoped persistent context.

  Although doing so the presentation layer is too tied to persistent session
  handling aspect. I think this could be really useful in a simple scenario
  with few pages, but in complex use causes (and integrating other frameworks
  like jbpm that need to share the same hibernate session) it will drive in a
  hell.


  Thank you.

  // Paolo

  On Sun, Mar 23, 2008 at 2:25 AM, Igor Vaynberg [EMAIL PROTECTED]
  wrote:



   conversation scope is slightly different, for long running hibernate
   sessions it is an equivalent of doing:
  
   class conversationpage extends webpage {
private org.hibernate.Session session;
  
public conversationpage(Session session) {
  this.session=session;
}
  
protected Session getSession() {
  if (!session.isconnected()) { session.reconnect(); }
  return session;
}
  
protected void ondetach() { session.disconnect(); }
   }
  
   so in this case the conversation would be propogated so:
  
   setresponsepage(new edituserstep2page(getsession(), usermodel));
  
   -igor
  
  
   On Sat, Mar 22, 2008 at 6:13 PM, brian.diekelman [EMAIL PROTECTED]
   wrote:
   
 I have only read up on Seam a few times, so help me out where I'm
 incorrect...
   
 As far as I can tell Seam uses the conversation scope as a step between
 request scope and session scope to persist values across a couple of
 requests, for instance a user creation wizard, etc.
   
 I don't know what integration they've enabled or how it works, but
   passing
 an object between requests is simple and straight forward in wicket.
Say
 that you want to pass a user object (or any other combination of
   objects)
 from one page to another when the user clicks a link:
   
 public class SimplePage extends WebPage
 {
  public SimplePage(final User user)
  {
add(new Link(link)
{
  public void onClick()
  {
setResponsePage(new SomeOtherPage(user));
  }
}
  }
 }
   
 You would pass it directly by reference.  Like I said, I don't know how
   Seam
 is integrating, but when you're using Wicket you don't really have a
   need
 for something like a conversation scope.  You can use whatever
   granularity
 you'd like to pass objects between pages, not necessarily bound to any
 particular scope.
   
 Please let me know if I'm just completely missing your point here.
   
 --
 View this message in context:
   
 http://www.nabble.com/Seam-Wicket-integration-and-conversation-scope-tp16228793p16230158.html
 Sent from the Wicket - User mailing list archive at Nabble.com.
   
   
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Label and textfiled component

2008-03-23 Thread Igor Vaynberg
see formcomponentlabel

-igor

On Sun, Mar 23, 2008 at 4:38 AM, Eyal Golan [EMAIL PROTECTED] wrote:
 Hello,
  Has anyone made a component that is made out of a Label and a TextField.
  I am looking for something like that.

  I have a situation as follows:
  If a TextField is supposed to be read-only, I am adding an AttributeModifier
  with a class name for styling.
  I want that the label associated to this field will also get an
  AttributeModifier.

  So the situation is: associating a label with a textfield.

  Hope I was clear

  --
  Eyal Golan
  [EMAIL PROTECTED]

  Visit: http://jvdrums.sourceforge.net/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket dojo DragAndDrop problem

2008-03-23 Thread Igor Vaynberg
missing header contributions are a wicket problem, so yes, open a jira
and attach it there

-igor


On Sun, Mar 23, 2008 at 7:07 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
 I have stripped it down to a little demnstation application (a complete 
 Eclipse projet, ready for build/deploy). Where can I put it? Should I open a 
 issue for wicket (even if it's related to wicket extensions)?

  Stefan

  -Ursprüngliche Nachricht-
  Von: Igor Vaynberg [mailto:[EMAIL PROTECTED]
  Gesendet: Dienstag, 18. März 2008 17:34
  An: users@wicket.apache.org
  Betreff: Re: Wicket dojo DragAndDrop problem
  Wichtigkeit: Hoch



  can you please provide a quickstart for this. seems like a 1.3.2 problem if 
 the reason is indeed that wicket ignores header contributions.

  -igor


  On Tue, Mar 18, 2008 at 2:32 AM, Stefan Lindner [EMAIL PROTECTED] wrote:
   I try to use Wicket 1.3.2 together with wicketstuff dojo (both 1.3.0
   beta and 1.3.0 latest) Everything works fine if I deploy my
   applicatioin  in development mode. Some lines like
  
   DEBUG:  Initialized drop contianer for dropContainer01, dropIds:
*,
   DEBUG:  Callback url base:
  
   ?wicket:interface=:0:dropContainer0::IActivePageBehaviorListener:0:am
   p;
wicket:ignoreIfNotActive=true
  
are shown on my page but the functionality is perfect. I use the
   Custom  drag and drop classes from the dojo examples achive. But when
   I switch  to deploymnet mode
  
   context-param
   param-nameconfiguration/param-name
   param-valuedeployment/param-value
   /context-param
  
Nothing works anymore. Can't even drag the source object. Looks like
   no  javascript library was loaded.
What am I doing wrong? Any idea?
  
Stefan
  
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
  
  

  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]


  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Label and textfiled component

2008-03-23 Thread James Carman
On Sun, Mar 23, 2008 at 1:05 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:
 see formcomponentlabel

And, if you wanted to bake your own FormComponentWithLabel component,
that's a great idea.  However, some folks might display a component's
label and the component itself completely differently (some might use
a table for instance) than the way you do it.  So, I don't know if it
would be a good candidate for a cross-project, reusable component.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Wicket in Action - 1.4 pending release

2008-03-23 Thread Eelco Hillenius
  I'm just curious if the move to 1.4 will have an impact on Wicket in Action.

Hi Ned,

I'm afraid not, because we are right now finalizing the book and we
still have to start working on 1.4. I would also mean weeks of extra
work for us, and after more than 2 years of writing, we've had it :-)

The good thing is that it shouldn't make a big difference to start
with; you should be able to use 1.4 without the generics just fine if
you just ignore the compiler warnings.

Maybe we'll bring out an extension to the book sometime around when
1.4 becomes final. But no promises. :-)

Eelco

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Japanese Wicket book Wicket 1.4

2008-03-23 Thread Tsutomu Yano
Hi,

I'm a user of wicket from japan. I have some good news and a question.

First, We finally found a wicket user group in Japan - The Wicket User Group 
Japna aka Wicket-ja.

http://www.wicket-ja.org/

I'm a founder of the group.  I want to make the group the starting point of 
WICKET in Japan. Wicket is now very hot technology in Japan.


Next, I'm now writing a wicket book in japanese language and plan to publish it 
at this summer. In current plan, it will be published at July. 


So I have a question about Wicket 1.4. I think the next wicket 1.4 will be 
'Wicket 1.3 + Generics' and will be distributed as soon as possible. So if the 
release will come until this summer, I want to change the schedule of 
publishing the japanese book and make the book compatible with new wicket 1.4. 
How the release plan of wicket 1.4?  Do you already have the plan?

Thanks.



Tsutomu YANO
benbrand at mac.com


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Problem with Hibernate and Caching..

2008-03-23 Thread Bert Radke
Hi all,

i noticed in my little test application, that the data is not being
refreshed from the database. I use the
org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
filter and settings from the blog
example. I have no cache configured in the persistence.xml. Any hints
on where to start searching
would great.

thank you in advance.

bert

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problem with Hibernate and Caching..

2008-03-23 Thread Timo Rantalaiho
On Sun, 23 Mar 2008, Bert Radke wrote:
 i noticed in my little test application, that the data is not being
 refreshed from the database. I use the
 org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
 filter and settings from the blog
 example. I have no cache configured in the persistence.xml. Any hints
 on where to start searching
 would great.

Could you show us some code, please? The crystal balls and 
tea leaves charge extra for easter work :)

Best wishes,
Timo

-- 
Timo Rantalaiho   
Reaktor Innovations OyURL: http://www.ri.fi/ 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Japanese Wicket book Wicket 1.4

2008-03-23 Thread Timo Rantalaiho
On Mon, 24 Mar 2008, Tsutomu Yano wrote:
 So I have a question about Wicket 1.4. I think the next wicket 1.4
 will be 'Wicket 1.3 + Generics' and will be distributed as soon as
 possible. So if the release will come until this summer, I want to
 change the schedule of publishing the japanese book and make the book
 compatible with new wicket 1.4. How the release plan of wicket 1.4?
 Do you already have the plan?

Planning is happening at the moment on [EMAIL PROTECTED]

  http://www.nabble.com/Planning-Wicket-Next-Generation-td16046194.html

...and a couple of other threads.

Best wishes,
Timo

-- 
Timo Rantalaiho   
Reaktor Innovations OyURL: http://www.ri.fi/ 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



AjaxSelfUpdatingTimerBehavior: how to conditionally skip a component update?

2008-03-23 Thread Vitaly Tsaplin
   Hi everyone,

   Does anyone know how to conditionally skip a component update in
case of using the AjaxSelfUpdatingTimerBehavior? For example if the
data is not updated and so there is no need to update the component.

   Vitaly

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AjaxSelfUpdatingTimerBehavior: how to conditionally skip a component update?

2008-03-23 Thread Igor Vaynberg
use AbstractAjaxTimerBehavior instead, that will give you the level of
control you want.

-igor


On Sun, Mar 23, 2008 at 2:09 PM, Vitaly Tsaplin
[EMAIL PROTECTED] wrote:
Hi everyone,

Does anyone know how to conditionally skip a component update in
  case of using the AjaxSelfUpdatingTimerBehavior? For example if the
  data is not updated and so there is no need to update the component.

Vitaly

  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Label and textfiled component

2008-03-23 Thread Maurice Marrink
If you want to build your own FormComponentWithLabel component you
probably want to use FormComponentPanel.

Maurice

On Sun, Mar 23, 2008 at 6:50 PM, James Carman
[EMAIL PROTECTED] wrote:
 On Sun, Mar 23, 2008 at 1:05 PM, Igor Vaynberg [EMAIL PROTECTED] wrote:
   see formcomponentlabel

  And, if you wanted to bake your own FormComponentWithLabel component,
  that's a great idea.  However, some folks might display a component's
  label and the component itself completely differently (some might use
  a table for instance) than the way you do it.  So, I don't know if it
  would be a good candidate for a cross-project, reusable component.



  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]