Re: Problem with FormTester and selection on dropDownChoice

2014-08-15 Thread Bert
Hello List, just stumbled of this isue and the tip from Sven Maier saved my day. Is this something that should be looked into and perhaps changed in later version? The current behavior is not very intuitive. Bert On 6 January 2014 14:10, Kev kevin.se...@intesens.com wrote: Yes it works

Re: http://wicketinaction.com/ not reachable

2014-04-02 Thread Bert
Subject: Re: http://wicketinaction.com/ not reachable I can get to in. Am in the United States. George -Original Message- From: Bert Sent: Thursday, March 27, 2014 8:44 AM To: users Subject: http://wicketinaction.com/ not reachable Hallo wicketeers, I can

http://wicketinaction.com/ not reachable

2014-03-27 Thread Bert
alleen een IP adres. Is this just me? Bert

Re: highlight invalid fields with custom Validation Framework?

2012-10-15 Thread Bert
Hi, are you looking for a generic way to highlight invalid components? If so, have a look at https://code.google.com/p/londonwicket/downloads/detail?name=LondonWicket-FormsWithFlair.pdf as an inspiration point. Depending on the wicket version, you might have to adopt the code a bit. Hope that

Re: Thanks

2012-07-12 Thread Bert
This is great news. We are using m2 right now for a new application and it would be great to have an official released wicket once we go into production (end of august).. Thanks for all the work (and for the blog posts) Bert On Thu, Jul 12, 2012 at 10:44 AM, Martin Grigorov mgrigo...@apache.org

Re: Keep css changes after setResponsePage

2012-06-24 Thread Bert
setRespondsPage discards the current page (and the contained component hierarchie) and constructs a new page. You need to apply the css classes when your new page is constructed. Now need for Ajax here, as you you are building a new page. regards On Sun, Jun 24, 2012 at 7:17 PM, sabina_12

Re: logout

2012-06-23 Thread Bert
But Wicket also stores the page map in the session to support back button functionality. If you only change the status, than the user could possibly (depending on how you construct your page) go back after the logout and see the last pages. This could be a problem on public computers. You could

Re: example to avoid pagemap locks

2012-06-14 Thread Bert
Hi, You can put the search result (and the start of the search process) into a Panel and wrap this with a AjaxLazyLoadPanel. Not sure about the cancel thing. At least you can have a look at the AjaxLazyLoadPanel for inspiration. Regards Bert On Thu, Jun 14, 2012 at 7:34 AM, fachhoch fachh

discrepancy between JavaDoc and code in MarkupContainer#visitChildren()

2012-04-26 Thread Bert
Bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: discrepancy between JavaDoc and code in MarkupContainer#visitChildren()

2012-04-26 Thread Bert
Hi Martin, done. https://issues.apache.org/jira/browse/WICKET-4519 Bert On Thu, Apr 26, 2012 at 13:18, Martin Grigorov mgrigo...@apache.org wrote: File a ticket please. On Thu, Apr 26, 2012 at 2:17 PM, Bert taser...@gmail.com wrote: Hi list, the JavaDoc for  MarkupContainer#visitChildren

Re: mapping / mounting of PIE.htc for IE

2012-04-03 Thread Bert
I have to switch to absolute URLs for this. Thanks for reading Bert On Mon, Apr 2, 2012 at 15:33, Bert taser...@gmail.com wrote: Hi list, in a current project I need to support IE 9. For this, the designer have decided to use pie.htc (http://css3pie.com/) which adds CSS3 support via IE

mapping / mounting of PIE.htc for IE

2012-04-02 Thread Bert
Hi list, in a current project I need to support IE 9. For this, the designer have decided to use pie.htc (http://css3pie.com/) which adds CSS3 support via IE behaviours. This pie.htc file is referenced from css. Unfortunately, IE is not looking for the file relative to the css, but relative to

Re: Url.toAbsoluteString doesn't work correctly

2011-11-11 Thread Bert
you can try RequestUtils.toAbsolutePath(fullPath); But this appears to have it on problems. E.g. for a page mounted under /login/callback you would get http//:host:port/login/login/callback Bert - To unsubscribe, e-mail

Re: Community tools

2011-10-07 Thread Bert
. There are a few opensource implementations available: http://gitorious.org/shapado (used by debian at http://ask.debian.net/) http://www.osqa.net/ I do like the SO style (never been a fan of mailing lists), but on the other side registering here is not much of a hassle. My 2 cent Bert On Fri, Oct

Re: tree do not stay open tree collapsed after setResponsePage

2011-05-26 Thread Bert
I have not worked with trees myself, but it sounds like you would like to update the contents of another div when a node in the tree is clicked? Use ajax to update the div, via an AjaxLink in the the node. Viel spass Bert Am 26.05.2011 10:53 schrieb hubert_hupe hubert_h...@gmx.de: i used

Re: [OT] Plugin WicketForge 0.8.1 available for IDEA 9+

2010-12-01 Thread Bert
cool, looking forward to test the new versions once i 'm home ; thank you On Wed, Dec 1, 2010 at 10:43, Paul Szulc paul.sz...@gmail.com wrote: cool! this is definitely not off topic :) On Tue, Nov 30, 2010 at 8:27 PM, Minas Manthos minas.mant...@gmail.comwrote: WicketForge 0.8.1 is

Hiding parts of the path

2010-09-23 Thread Bert
, generated URL should include the extra information... My first idea was to overwrite the WicketFilter.getRelativePath() and remove the extra path component. This did not work. Any other idea? Would an UrlCodingStrategy help? thanks in advance Bert

Re: Page Design Question

2010-03-17 Thread Bert
provide getter and setter in your PageOrComponent class for that spezialAttribute. Bert On Tue, Mar 16, 2010 at 15:19, Vladimir K koval...@gmail.com wrote: Wiket provides PropertyModel class to map to values accessible via expressions. You always can write your own models. For instance you can

Re: Wicket-securty

2010-03-01 Thread Bert
This would entirely depend on your requirements? So far, i did not need to integrate other frameworks for this but for more complex scenario you probably need to. On Mon, Mar 1, 2010 at 09:14, Josh Kamau joshnet2...@gmail.com wrote: Hi Team;  I am just wondering, are the wicket security

Re: Serialization and Form Models

2010-03-01 Thread Bert
I found Igors post on smart entity models very helpful on that matter: http://wicketinaction.com/2008/09/building-a-smart-entitymodel/ basically, it attaches/detaches only if an Id is set (hence, it can be fetched from the backend) Bert

Re: Ajax refresh outer panel

2010-03-01 Thread Bert
If i recall correctly, then you can't change the component tree once the rendering started. Not 100% sure here. What i would do is to add both panels and override the isVisible() funktion in them. In there you check is a user is logged in or not .. Bert

Re: busy indicator and DateTextField / DatePicker / YUI

2010-02-24 Thread Bert
, calheader. You can of cause add more class name into the list for further never ending busy sign. Regards! Jing -Original Message- From: Bert [mailto:taser...@gmail.com] Sent: Montag, 22. Februar 2010 09:55 To: users@wicket.apache.org Subject: busy indicator and DateTextField

Re: Ajax and OpenSessionInViewFilter problems

2010-02-19 Thread Bert
and committed. bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Easier using of FormComponentFeedbackIndicator for many fields?!

2010-02-04 Thread Bert
something along the lines [1] ? [1] http://londonwicket.googlecode.com/files/LondonWicket-FormsWithFlair.pdf - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: dynamically adding components to a ListView

2010-01-26 Thread Bert
looks as it has been solved here: http://stackoverflow.com/questions/2114351/dynamically-add-components-to-listview-in-wicket/ bert On Sun, Jan 24, 2010 at 13:04, Sven Meier s...@meiers.net wrote: Hi, you'll have to tell the request target which components to redraw: Put your list inside

Re: WicketExtensions : DataTable : Sending 'id's between web pages?

2010-01-18 Thread Bert
public void onClick() { setResponsePage(new SubFamilyPage(id)); // or: setResponsePage(new SubFamilyPage(family)); } }); Of course, the SubFamilyPage needs a constructor that accepts the used parameter. Hope that helped. Bert

Re: submit a form from outside of it

2010-01-18 Thread Bert
Not sure here, but the AjaxSubmitLink has an constructor that lets you pass in the form it should work on. Bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: submit a form from outside of it

2010-01-18 Thread Bert
I 'm not sure i completely understand your requirement, but the AjaxButton too has a constructor with a Form as parameter. Would it be possible to access the form when creating the button? Bert On Mon, Jan 18, 2010 at 13:11, Martin Asenov mase...@velti.com wrote: Thanks Bert, but I use a button

Re: Help with Wicket Adoption Numbers

2010-01-11 Thread Bert
It a figure from the famous dilbert comics. here is an image of him: http://files.myopera.com/ThePast/albums/170779/pointy%20haired%20boss.jpg Enjoy On Mon, Jan 11, 2010 at 08:58, Eyal Golan egola...@gmail.com wrote: As my English is not my mother's tongue, even though I do speak it pretty

Re: Accessing Page components

2009-12-16 Thread Bert
the conversion and validation. Or do you use a CompoundPropertyModel (not shown in the code) ? Bert On Thu, Dec 17, 2009 at 08:45, marioosh.net marioosh@gmail.com wrote: Is simple possibility to access page components in anonymous onClick method like in code below ? public class NewLinkPanel

ListView, Ajax and Forms

2009-12-15 Thread Bert
errors from items not in the form anymore. How would you implement this? Or perhaps a pointer if and how i can use the ReuseIfModelsEqualStrategy? thank you in advance for your help Bert - To unsubscribe, e-mail: users-unsubscr

Re: ListView, Ajax and Forms

2009-12-15 Thread Bert
to the ajax target. any ideas what i do wrong here? Bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: ListView, Ajax and Forms

2009-12-15 Thread Bert
in advance Bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: PageParameters and BookmarkablePageLink

2009-12-09 Thread Bert
Hi, the parameter value (a ConfigurastionUser in your case) is converted to a String using toString(). Are you sure that you want to pass in that object and not an ID of it? Bert On Wed, Dec 9, 2009 at 12:57, Eyal Golan egola...@gmail.com wrote: Hi, I have a BookmarkablePageLink that I set

Re: Forms and detached JPA ( Hibernate) Objects

2009-11-23 Thread Bert
Thanks for the answers. Due to extreme pressure in the current project i will go with the option proposed by james and build 'shadow' copy of the object to edit in the form, hopefully finding time later to look into more generic solution. I just thought that most applications using wicket and

Forms and detached JPA ( Hibernate) Objects

2009-11-21 Thread Bert
-objects-on-serialization.html I feel like missing the obvious here, how do others handle this with wicket? looking forward to your answers. Bert - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-09 Thread Bert
Perhaps he is using a maven proxy repository and the archetype repository is not added to it? On Thu, Oct 8, 2009 at 21:49, jWeekend jweekend_for...@cabouge.com wrote: Danisevsky, This has been used by loads of people and on all sorts of OSs and versions. I also just successfully tried it on

Re: image inside wicket:link tag

2009-10-02 Thread Bert
Hi, perhaps i just not understand the problem. but the img tag is within the a tag, so the image should be part of the link? i 'm not sure i under stand the meaning of: 'When I click the link then image is shown' regards On Fri, Oct 2, 2009 at 09:49, Gatos ega...@gmail.com wrote: I see it's

Re: What is the best way to handle Undefined attribute name (wicket:id) warnings from Eclipse Ganymede?

2009-09-02 Thread Bert
You can always surround your wicket:extend tags with a HTML header. I do so all the time, that i can preview the panel. Everything outside the wicket:extends gets thrown away by wicket when using the panel. On Wed, Sep 2, 2009 at 09:18, PDiefentpdief...@csc.com wrote: This works fine for

Cometd + Tomcat + jQuery

2009-04-24 Thread Bert van Heukelom
is about into a wicket context. Comments are very welcome. http://bertelom.wordpress.com/2009/04/24/tomcat-wicket-cometd/ Cheers Bert

Re: Repeater that disposses content after rendering?

2009-03-03 Thread Bert
That was my first idea and i checked the javadoc and source (without following too deep into the stack (DefaultItemReuseStrategy is where this is done?). Good to know that the RefreshingView is behaving like this, i use it rather often. Thanks for the reply, Bert On Tue, Mar 3, 2009 at 09:43

Repeater that disposses content after rendering?

2009-03-02 Thread Bert
Hi, perhaps this does not make sense, but is there a Component that discards all child components after the rendering, before the serialization? Would this make sense for components that render a large amount of child's (tables with many cells) where all of them could be reconstructed from a LDM

Re: subdomains and setting up WebSession

2009-02-24 Thread Bert
Sorry for stepping in here, but this interest me too ;) do you map these different domains to different databases, but using only one application deployment? if so, i would like to know how you did this... thanks - To

Re: ModalWindow and wicket:link not working

2009-02-22 Thread Bert
The problem was, as usual, in front of the computer ;) all my other pages where bases on 3 other base pages. and, my css was sitting next to this css in the same folder, hence the resolution worked. guess i have to read up on how the wicket:link resolves resources. thanks all

YUI DateTimeField and Wicket 1.3.5

2009-02-22 Thread Bert
Hi, it looks like org.apache.wicket.extensions.yui.calendar.DateTimeField is not available in version 1.3.5? is there a plan to add it again, or what do you use for a 'fancy' Date Chooser control? thanks Bert - To unsubscribe

Re: YUI DateTimeField and Wicket 1.3.5

2009-02-22 Thread Bert
Thanks, this worked out great. now i have to do some reading / testing on how to style it, but it is working great so far On Sun, Feb 22, 2009 at 20:13, Igor Vaynberg igor.vaynb...@gmail.com wrote: See datepicker in wicket-datetime -igor

ModalWindow and wicket:link not working

2009-02-19 Thread Bert
Hi, i 'm doing my first ModalWindow and after some understanding problems it is now working fine. Except that the stylesheet does not get loaded (404). I 'm doing the ModalWindow using a Page (not Panel) and try to include the css file just like on every other page: wicket:link

Re: Retrieve RemoteUser from HttpServletRequest

2009-01-22 Thread Bert
On Wed, Jan 21, 2009 at 14:37, Luca Provenzani eufor...@gmail.com wrote: Thank You for answer Bert I'll try to retrieve remoteAddress in this way(tomorrow morning, ehm for Italy ;-), because now i'm working for an other project). that would be the same timezone as me (germany) but... i

Re: Retrieve RemoteUser from HttpServletRequest

2009-01-21 Thread Bert
Hi, I use RequestCycle.get().getClientInfo().getProperties().getRemoteAddress(); or RequestCycle.get().getClientInfo().getProperties().getUserAgent(); for this. hth Bert On Wed, Jan 21, 2009 at 11:35, Luca Provenzani eufor...@gmail.com wrote: Hi All! I'm in a webPage and i need to retrieve

Re: Refresh parent page from an iframe

2008-11-02 Thread Bert van Heukelom
be a more clever answer :) Cheers Bert 2008/11/2 itayh [EMAIL PROTECTED] Hi, I have a page that contains several iframes with some actions in each iframe. When I press on some of the actions I want the parent page to be updated (since the actions affect the whole parent page with the iframes

Testing + IFrame

2008-10-31 Thread Bert van Heukelom
manage to a reference of the Iframe but can not find a path-string that accesses a component (namly a form) within the Iframe. Example could be: FormTester f = wicketTester.newFormTester(path:to:my:iframe:and:to:its:inner:form); Cheers (and thanks a lot) Bert

Re: Individual session timeout

2008-09-26 Thread Bert
Hi, From the documentation, setMaxInactiveInterval() should do the trick. But i have not used it myself.. http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/http/HttpSession.html#setMaxInactiveInterval(int) Bert On Fri, Sep 26, 2008 at 13:10, Stefan Lindner [EMAIL PROTECTED] wrote

Re: Wicket merchandise?

2008-08-21 Thread Bert Radke
I like this one.. can't wait to see the faces of all the ADF/JSF Fanboys around ;) On Thu, Aug 21, 2008 at 15:36, Daan van Etten [EMAIL PROTECTED] wrote: Here is version 2 :-) http://stuq.nl/media/image/apache-wicket-tshirt-black-version-2.png On 21 aug 2008, at 15:07, Matej Knopp wrote: I

Re: [announce] Wicket in Action e-book has been published!

2008-08-19 Thread Bert Radke
agree with Martijn Dashorst. The PDF is not that expensive and at least you get a PDF along with book. most other publishers don 't give you this. Thanks again, Bert - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: HTTP Session creating at home page

2008-06-16 Thread Bert Radke
Many thanks from me also. I just had the problem with a login from a stateless page, where the userinformation was lost on the next request. Following the list in readonly mode save me some time again ;) Bert On Sun, Jun 15, 2008 at 2:32 PM, Stefan Simik [EMAIL PROTECTED] wrote: Great

Re: Problem with Hibernate and Caching..

2008-03-25 Thread Bert Radke
entityManager) { this.entityManager = entityManager; } After removing the type = PersistenceContextType.EXTENDED part, it seems to work now.. Looks like i just needed someone to 'talk' to ;) sorry for the noise in the list.. Again, thanks for answering / reading Bert

Re: Problem with Hibernate and Caching..

2008-03-25 Thread Bert Radke
On Tue, Mar 25, 2008 at 1:41 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Hmm, if you remove that you will get into trouble. At least I got, thats why I put it in there in the first place.. Problem was when I had entites that were managed between pages.. Eg if you go

Problem with Hibernate and Caching..

2008-03-23 Thread Bert Radke
to start searching would great. thank you in advance. bert - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SpringBean in AuthenticatedWebSession

2008-02-29 Thread Bert Radke
... Do i have to take any additional steps to get Spring to inject the DAO into the session? [1] http://cwiki.apache.org/WICKET/blog-tutorial.html Thanks in advance for your time. Bert - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: SpringBean in AuthenticatedWebSession

2008-02-29 Thread Bert Radke
it works, Thank you both. Bert - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]