wicket 1.4.2

2009-09-29 Thread Tomek Sniadach
Hi,
I found on https://issues.apache.org/jira/browse/WICKET a release 1.4.2 of
wicket, but it's not on the official page, nor on the mirror sites. Is it a
public release or are the sites just not updated yet?

regards
Tomek


Re: wicket 1.4.2

2009-09-29 Thread Tomek Sniadach
Thanks Ernesto. :-)

2009/9/29 Ernesto Reinaldo Barreiro reier...@gmail.com

 Maybe this thread will explain why
 http://www.nabble.com/-vote--release-1.4.2-td25636013.html
 http://www.nabble.com/-vote--release-1.4.2-td25636013.html
 Best,

 Ernesto

 On Tue, Sep 29, 2009 at 2:38 PM, Tomek Sniadach 
 tomek.sniad...@googlemail.com wrote:

  Hi,
  I found on https://issues.apache.org/jira/browse/WICKET a release 1.4.2
 of
  wicket, but it's not on the official page, nor on the mirror sites. Is it
 a
  public release or are the sites just not updated yet?
 
  regards
  Tomek
 



Re: Wicket 1.4.1 and HtmlUnit

2009-09-25 Thread Tomek Sniadach
Hi Igor,
yes the application works in a browser. But with wicket 1.4-rc2 my tests are
working.
The behavior in wicket has changed and Htmlunit has a problem with this. I
just try to find the cause, to fix it (or report a bug in htmlunit). I also
suppose it is indeed a problem in HtmlUnit but I couldn't localize the
problem yet.

Tomek

2009/9/23 Igor Vaynberg igor.vaynb...@gmail.com

 your app works fine in a browser, right? so its most likely an htmlunit
 problem.

 -igor

 On Wed, Sep 23, 2009 at 7:31 AM, Tomek Sniadach
 tomek.sniad...@googlemail.com wrote:
  Hi,after upgrade from wicket 1.4-rc2 to 1.4.1 I have problems with my
  HtmlUnit tests. It seems to be a problem with form submitting. I'm not
 sure
  if this is a wicket problem, but with version 1.4.rc2 it works fine.
  Here a sample code:
 
  HtmlPage page = client.getPage(request);
  HtmlButton btn  = getSubmitButton(page);
  ...
  btn.click();
  List results = page.getByXpath(xpath to my filter results);
 
 
  The problem is that the page isn't updated. When I write page =
  page.refresh(); after btn.click() it works fine, but it should not be
  necessary. The button causes an ajax request so btn.click() returns no
 new
  page. As I said, I don't know if this is a problem in wicket, but when I
  downgrade into 1.4-rc2 the tests work fine. I've also tried with
 1.4.-rc5:
  he same as in 1.4.1
  Does anyone has any idea?
 
  greets
  Tomek
 

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




Wicket 1.4.1 and HtmlUnit

2009-09-23 Thread Tomek Sniadach
Hi,after upgrade from wicket 1.4-rc2 to 1.4.1 I have problems with my
HtmlUnit tests. It seems to be a problem with form submitting. I'm not sure
if this is a wicket problem, but with version 1.4.rc2 it works fine.
Here a sample code:

HtmlPage page = client.getPage(request);
HtmlButton btn  = getSubmitButton(page);
...
btn.click();
List results = page.getByXpath(xpath to my filter results);


The problem is that the page isn't updated. When I write page =
page.refresh(); after btn.click() it works fine, but it should not be
necessary. The button causes an ajax request so btn.click() returns no new
page. As I said, I don't know if this is a problem in wicket, but when I
downgrade into 1.4-rc2 the tests work fine. I've also tried with 1.4.-rc5:
he same as in 1.4.1
Does anyone has any idea?

greets
Tomek


understanding models

2009-09-11 Thread Tomek Sniadach
Hi,
i have probably a simple question: I have a component (multiselection dialog
in js) that should remember its selected values throwout requests. This is
the job of a model.
I have a constructor with a model as parameter, but on new request (page
refresh) the will be constructed again with initial model. But I need the
old values.
I understood that wicket serialize a model at the end of a request, but I
don't understood how  to get the old values on a new request. Is there a
simple example for this purpose?

Regards
Tomek


Re: Changing position of WicketAjaxDebug panel

2009-09-04 Thread Tomek Sniadach
Of course! Thanks a lot John.
Tomek

2009/9/3 John Krasnay j...@krasnay.ca

 !important is your friend...

 a#wicketDebugLink {
  background-color:#44 !important;
  border:medium none !important;
  bottom:0 !important;
  color:white !important;
  opacity:0.8 !important;
  right:0 !important;
  text-decoration:none;
  text-transform:lowercase !important;
 }

 jk

 On Thu, Sep 03, 2009 at 04:47:36PM +0200, Tomek Sniadach wrote:
  Hi,
  is there a possibility to change the position of opener panel? It is
 fixed
  on the right side with embedded style attributes, so i cannot override it
  with my own css. Unfortunately this is the place, where I have my submit
  button. My workaround is firebug, but it's annoying. Have someone an
 idea?
 
  Regards
  Tomek

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