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 wrote: > Yes it works. > Thank you ver

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

2014-04-02 Thread Bert
, Richter, Marvin < > >> > marvin.rich...@jestadigital.com> wrote: > >> > > >> >> I get the same message from the Hoster (Germany) > >> >> > >> >> > >> >> -Original Message- > >> >> From:

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 he

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 wrote: > Welc

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 wrote:

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 a

Re: example to avoid pagemap locks

2012-06-13 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 wrote

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 wrote: > File a ticket please. > > On Thu, Apr 26, 2012 at 2:17 PM, Bert wrote: >> Hi list, >> >> the JavaDoc for  MarkupContainer#visitChildre

discrepancy between JavaDoc and code in MarkupContainer#visitChildren()

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

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 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

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 t

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-06 Thread Bert
orth. 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,

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" : > i used the foll

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 wrote: > cool! > > this is definitely not off topic :) > > On Tue, Nov 30, 2010 at 8:27 PM, Minas Manthos wrote: > >> >> WicketForge 0.8.1 is available for download. >> >> -Facet de

Hiding parts of the path

2010-09-22 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
ot;)); than provide getter and setter in your PageOrComponent class for that spezialAttribute. Bert On Tue, Mar 16, 2010 at 15:19, Vladimir K wrote: > > Wiket provides PropertyModel class to map to values accessible via > expressions. > You always can write your own models. Fo

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 ..

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: 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 wrote: > Hi Team; > >  I am just wondering, are the wicket security features enough or i hav

Re: busy indicator and DateTextField / DatePicker / YUI

2010-02-24 Thread Bert
lement > or its parentNode is one of "yui", "calnav", "calheader". > > You can of cause add more class name into the list for further "never ending > busy sign". > > Regards! > Jing > > -Original Message- > From: Bert [mail

busy indicator and DateTextField / DatePicker / YUI

2010-02-22 Thread Bert
Hi, i followed the example in [1] to add a busy indicator to our application and it works like a charm. [1] http://cwiki.apache.org/WICKET/generic-busy-indicator-for-both-ajax-and-non-ajax-submits.html Only problem i have encountered so far is the use of the YUI Calendar. It triggers the indica

Re: Ajax and OpenSessionInViewFilter problems

2010-02-19 Thread Bert
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: users-h...@wicket.apache.

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 wrote: > Hi, > > you'll have to tell the request target which components to redraw: > Put y

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 wrote: > Thanks Bert, but I use a button... I

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: WicketExtensions : DataTable : Sending 'id's between web pages?

2010-01-18 Thread Bert
hat helped. Bert On Mon, Jan 18, 2010 at 10:58, Ashika Umanga Umagiliya wrote: > My Domain model has 'Family' which has many 'SubFamily' objects. > > I managed to display the 'Family' information using a DataTable in > 'FamilyPage'. > Now I w

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 wrote: > As my English is not my mother's tongue, even though I do speak it pretty > good, what is the

Re: Accessing Page components

2009-12-16 Thread Bert
t Wicket handle 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 wrote: > Is simple possibility to access page components in anonymous onClick > method like in code below ? > > public class

Re: ListView, Ajax and Forms

2009-12-15 Thread Bert
ointers given. thanks in advance 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
o 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

ListView, Ajax and Forms

2009-12-15 Thread Bert
d receive validation 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-

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 wrote: > Hi, > I have a BookmarkablePageLink that I set parameters

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 an

Forms and detached JPA ( Hibernate) Objects

2009-11-21 Thread Bert
ching-and-attaching-persistent-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.

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

2009-10-08 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 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 XP, Vista & Ubuntu in

Re: image inside wicket:link tag

2009-10-02 Thread Bert
Hi, perhaps i just not understand the problem. but the tag is within the 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 wrote: > I see it's a new feature in 1.4

Re: Article in german Javamagazin

2009-09-03 Thread Bert
yes, it is. http://it-republik.de/jaxenter/java-magazin-ausgaben/Wicket-000321.html could not find a online version of this article .. On Thu, Sep 3, 2009 at 18:19, Jonathan Locke wrote: > > > btw, is this a print magazine? > -

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 tags with a HTML header. I do so all the time, that i can preview the panel. Everything outside the gets thrown away by wicket when using the panel. On Wed, Sep 2, 2009 at 09:18, PDiefent wrote: > > This works fine for pages, but how can I manage it when working wit

Re: Wicket Google App Engine Compatible

2009-08-27 Thread Bert
/2009/04/wicket-on-google-app-engine.html also: http://www.danwalmsley.com/2009/04/08/apache-wicket-on-google-app-engine-for-java/ there are a few more hit when searching .. or did i misunderstood your question? regards, bert -

Cometd + Tomcat + jQuery

2009-04-24 Thread Bert van Heukelom
hat cometd 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 unsubscri

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 wrote: > See datepicker in wicket-datetime > > -igor - To uns

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 u

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 ---

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:

Re: Retrieve RemoteUser from HttpServletRequest

2009-01-22 Thread Bert
On Wed, Jan 21, 2009 at 14:37, Luca Provenzani 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)

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 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
icket 6 weeks ago so there might 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 > updat

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 PRO

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 wrot

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 addit

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: > &g

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 > yo

Re: Problem with Hibernate and Caching..

2008-03-25 Thread Bert Radke
inal EntityManager 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 f

Problem with Hibernate and Caching..

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

Re: SpringBean in AuthenticatedWebSession

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

SpringBean in AuthenticatedWebSession

2008-02-29 Thread Bert Radke
like all the others... 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-ma

Re: Layering / Data-access with Wicket

2008-02-19 Thread Bert Radke
Thanks all the the answers, i will dig into the phonebook example and come back later with questions. (will be some time, this is a spare time project). I already used the Blog example for inspirations (got the Wicket-Spring coupling from there). Thanks for sharing this. Bert

Layering / Data-access with Wicket

2008-02-18 Thread Bert Radke
lem, but i would like to learn how to proper layer / separate this in a webapp (current framework i 'm (forced to) used does mix it all :( ). Thanks in advance for taking the time to read this, Bert PS: apart from Wicket-Spring i 'm not using any extensi