Wicket + Spring 2.5

2007-12-15 Thread Korbinian Bachl
Hi, im currently using ANT + IDE (EAR having EJBapp + WEBapp) to get my wicket apps started, but somehow I looked at the new spring 2.5 and it seems interesting to me (same possibilities but no big appserver needed)... can anyone post a example app or structure to me where I can see how to pl

MyWebApplication, SpringWebApplication + AuthenticatedWebApplication

2008-01-02 Thread Korbinian Bachl
Hi, usually my WebApp is based on Wicket-Auth-Roles, so I do: MyWebApp extends AuthenticatedWebApplication { Lately I played around with spring 2.5 a bit and so used MyWebApp extends SpringWebApplication { but how can I now integrate a SpringWebApplication to use Wicket-Auth-Roles?

Re: MyWebApplication, SpringWebApplication + AuthenticatedWebApplication

2008-01-03 Thread Korbinian Bachl
well as more things - arent this needed? Best, Korbinian Dan Kaplan schrieb: The wiki has a section on spring integration. You put a line in your app's init() method to accomplish this. It should be easy to find. -Original Message- From: Korbinian Bachl [mailto:[EMAIL PROTECTED]

WicketWebBeans

2008-01-06 Thread Korbinian Bachl
Hi, i just wanted to have a look at it but im somehow stuck. First I wanted to get it from src so I checked out the wicketwebbeans-examples from trunk and did: mvn install error: GroupId: net.sourceforge.wicketwebbeans.parent ArtifactId: WicketWebBeans-parent Version: 1.0-SNAPSHOT Reason:

applicationwide datePattern

2007-09-06 Thread Korbinian Bachl
Hi, can anyone tell me how to change the default date pattern wicket should use in the whole app? I mean i can do: add(new DatePicker() { protected String getDatePattern() { return "dd.MM."; } on each component manually, bu

Re: applicationwide datePattern

2007-09-06 Thread Korbinian Bachl
ng session.setLocale() thats how i do it. Regards Dipu On 9/6/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi, can anyone tell me how to change the default date pattern wicket should use in the whole app? I mean i can do: add(new DatePicker() { protected String getD

Re: applicationwide datePattern

2007-09-06 Thread Korbinian Bachl
that worked - thank you Best Regards, Korbinian Francis De Brabandere schrieb: You can override newConverterLocator in your Application @Override protected IConverterLocator newConverterLocator() { ConverterLocator locator = new ConverterLocator(); locator.set(java.sql

Re: DatePicker format?

2007-09-07 Thread Korbinian Bachl
Hi, i cant help you with the datepicker (im on 1.3) , but to have special-formated dates in an TextField you need sth like this: new Model() { @Override public Object getObject() { Date dt = new Date(getYourDate());

Re: Simple CMS or Wiki

2007-09-08 Thread Korbinian Bachl
you might want to have a look at wicket-contrib-yui - i added the YuiEditor yesterday (still alpha) but this should do it for your need. Its an easy WYSIWYG editor (especially as its crossbrowser), demo is under: http://developer.yahoo.com/yui/examples/editor/index.html if you want to enhance

Re: Two small questions

2007-09-08 Thread Korbinian Bachl
So wicket-extensions shouldnt be used for dates now? If so, how can I pursuade the DateTextField from there to use a long (classic unix timestamp) instead of a Date inside a model? (without overiding getModelObject/ setModelOject as its an inner class and I cant have the model beeing final?)

Re: Two small questions

2007-09-08 Thread Korbinian Bachl
original PatternDateConverter. best, Korbinian On 9/8/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: So wicket-extensions shouldnt be used for dates now? You can, and there is another DateTextField in that project. The question was where the DateLabel component resides, which is in wicket-da

Re: AW: Locating CSS under WEB-INF, please help

2007-09-09 Thread Korbinian Bachl
put your html files beside your java files: e.g: org/dummy/here -> MyPage.java -> MyPage.html I tried your suggestion below: > href="WEB-INF/content/css/style.css"/> WEB-INF is NOT for public content! - usually you should put your css files either aside your htmland java files an

Re: Param = null

2007-09-10 Thread Korbinian Bachl
no it is not! - its just 1 way the wicket syntax may be - you should look at mount and the existing coding-strategys as well as (if youre on 1.3 already) on the new HybridUrlCodingStrategy you can have fllowing URL flavors out of box: /app/page/value1/value2 (IndexedURLCoding) /app/page:0 (hyb

Re: Param = null

2007-09-10 Thread Korbinian Bachl
>Hacker will be > very happy with the current state of implementation. why? chickabee schrieb: Yes you are right. I guess the the name u were looking for is: org.apache.wicket.request.target.coding.MixedParamUrlCodingStrategy These strategies are pretty nice, but the question remains why the

Re: BookmarkablePage URL

2007-09-10 Thread Korbinian Bachl
V. Jenks schrieb: Where is this mounting done? its done in the init() of your WebApplication class e.g: /** * @see org.apache.wicket.examples.WicketExampleApplication#init() */ protected void init() { mount(new HybridUrlCodingStrategy("/index", Index.class)); }

Re: I'm giving a Wicket Lunch 'n Learn at my company on the 27th

2007-09-13 Thread Korbinian Bachl
Short non-wicket question: you mentioned JSF/ SEAM package - what are the pros and cons for you for this? Regards, Korbinian robert.mcguinness schrieb: I finally got a confirmation from my manager to go ahead with the presentation. I'm far from a Wicket expert, but I really like the framewor

Re: Opinion::javascript frameworks for wicket stuffs

2007-09-13 Thread Korbinian Bachl
well, i think you mix up with wicket-stuff-project size (the size you download and deploy) and the size you have in the end the user to load. for example look at wicket-contrib-yui. if you download it, its some megs big, but it only puts small JS libs to the client using these actually (there

Re: Apache Wicket 1.3.0-beta4 released!

2007-10-12 Thread Korbinian Bachl
Nice, however, is there a reason that there are no javadoc-jars included??? I somehow miss this in the wicket releases... 3 nice folders containing the release-jars, the source-jars and the doc-jars. Regards Korbinian Frank Bille schrieb: This is the fourth beta for Apache Wicket we have pr

Re: Apache Wicket 1.3.0-beta4 released!

2007-10-12 Thread Korbinian Bachl
Ok, thanks for the info. Korbinian Frank Bille schrieb: For now you can find the source/javadoc jars in the maven repository: http://repo1.maven.org/maven2/org/apache/wicket/ Frank - To unsubscribe, e-mail: [EMAIL PROTEC

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
> Given these subtle problems with this approach, I admit I'm warming to > the multiple extend/child idea. im oposite - if i have X extends in a page, whose extend should be preferred (e.g: manipulating the head or a part outside of itself) ? my override of onBeforeRender is secure from your p

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
Sebastiaan van Erk schrieb: Korbinian Bachl wrote: you missed solution3: the real-wicket-way(tm) for multiple content-places in a tied page-area: Whaaa, I seriously hope this is not the real-wicket-way! My brain hurts! maybe you should go to a doctor then?... A framework is supposed to

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
you missed solution3: the real-wicket-way(tm) for multiple content-places in a tied page-area: eg: html: ... Place to put anything ... java: public abstract MyPage extends AnyPageExtendingWicketsWebPage { private boolean initialized = false; private final RepeatingView anything

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
Chris Colman schrieb: The beauty of the multiple extend/child idea is that it's not a completely new concept we're talking about here - it's merely an issue of supporting n>1 instead of arbitrarily fixing n=1 like it is now. 1 Question: Who dominates Who and Why? If you extend 1 class by cla

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
Hi Chris, i rewinded some part of your idea and the thread and now see bit clearer what you want - perhaps you shouldnt call i multiple extend/child but more precisely "inheritance with multiple areas" as you go: html-basepage: ... while each those areas are then subsidari

Re: Multiple tags on a single base page?

2007-11-07 Thread Korbinian Bachl
just a question to you Igor and Eelco: some here like it and others dont like it, so wouldnt be an different project like wicket-extension the part for this? couldn't this be applied similar to the wicket-jmx plugin where you just dump the jar into the classpath and have it registering and ena

Re: Show and hide panel with radio-choice

2007-11-09 Thread Korbinian Bachl
you are not manipulating the AjaxRequestTarger target, you need to add it to the target: target.add(panel1); target.add(panel2); have look at the wicket-examples/ajax also: http://www.wicketstuff.org/wicket13/ Best, Korbinian BatiB80 schrieb: Hi together, I have in my page two panels and

Re: JPA best-practices?

2007-11-16 Thread Korbinian Bachl
Uwe Schäfer schrieb: Maris Orbidans schrieb: Let's remember good old EJB's. Inject an EntityManager in a session bean facade and EJB container will handle all concurrency issues. No need to write any boilerplate code. that´s where i come from. problem is, that you domain object aren´t ab

Re: JPA best-practices?

2007-11-16 Thread Korbinian Bachl
say that, but spring is IMHO XML nightmare while ejb3 seems very easy for me.. On Nov 16, 2007 4:45 PM, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Uwe Schäfer schrieb: Maris Orbidans schrieb: Let's remember good old EJB's. Inject an EntityManager in a session bean facade a

Re: How to secure passwords?

2007-12-03 Thread Korbinian Bachl
This is nothing about wicket - its about base security. MD5 is a hash-algorithm (see: http://en.wikipedia.org/wiki/Md5) which is no more secure (flaw found 1996) as there are tables to reverse given md5 (from 2003 on) to a valid input if you need security youre best with SHA at the moment, tha

Re: How to secure passwords?

2007-12-03 Thread Korbinian Bachl
Pills schrieb: Korbinian Bachl wrote: This is nothing about wicket - its about base security. MD5 is a hash-algorithm (see: http://en.wikipedia.org/wiki/Md5) which is no more secure (flaw found 1996) as there are tables to reverse given md5 (from 2003 on) to a valid input thank you for

Re: How to secure passwords?

2007-12-03 Thread Korbinian Bachl
Sebastiaan van Erk schrieb: Korbinian Bachl wrote: This is nothing about wicket - its about base security. MD5 is a hash-algorithm (see: http://en.wikipedia.org/wiki/Md5) which is no more secure (flaw found 1996) as there are tables to reverse given md5 (from 2003 on) to a valid input As

wicket 6.x / FeedbackPanel StackOverflowError

2016-05-14 Thread Korbinian Bachl
Hello, I'm currently migrating a wicket / brix application from wicket 1.4 to wicket 6.23; So far most seems well, but there is a thing I'm really stuck at. My code uses FeedbackPanel regularly like this (on many many pages/ tiles): loginForm.add(new FeedbackPanel("feedBack") { priv

Re: wicket 6.x / FeedbackPanel StackOverflowError

2016-05-14 Thread Korbinian Bachl
cal > anonymous class - (return myVisibilityField;) > > kind regards > > Tobias > >> Am 14.05.2016 um 13:23 schrieb Korbinian Bachl >> : >> >> Hello, >> >> I'm currently migrating a wicket / brix application from wicket 1.4 to wicket >

wicket 6.x / java.text.ParseException on multiple div's

2016-05-15 Thread Korbinian Bachl
Hello, I'm still on migrating a big wicket 1.4 app to wicket 6.23, and I now got a problem I dont know how to solve. A page throws following error: java.text.ParseException: Same attribute found twice: div (line 163, column 52) at org.apache.wicket.markup.parser.XmlPullParser.parseTagText(XmlPu

Re: wicket 6.x / java.text.ParseException on multiple div's

2016-05-15 Thread Korbinian Bachl
s you about a duplicated attribute. Please check if > there > is a tag looking like this in your code: > > > > > > E.g. smth like this: > > Happened some times to me... > > Best regards, > Martin > > > > Am 15. Mai 2016 11:39:30 MESZ, schrieb K

Re: wicket 6.x / java.text.ParseException on multiple div's

2016-05-15 Thread Korbinian Bachl
6 11:54:30 > Betreff: Re: wicket 6.x / java.text.ParseException on multiple div's > Did you try to remove the questionable markup to see what is happening? > > Am 15.05.2016 um 11:39 schrieb Korbinian Bachl: >> Hello, >> >> I'm still on migrating a big wicket 1.

Re: wicket 6.x / java.text.ParseException on multiple div's

2016-05-15 Thread Korbinian Bachl
> the error message tells you about a duplicated attribute. Please check if > there > is a tag looking like this in your code: > > > > > > E.g. smth like this: > > Happened some times to me... > > Best regards, > Martin > > > > Am 15. Ma

wicket 7 / 8.x and relative to absolute path

2017-03-16 Thread Korbinian Bachl
Hello, how is it possible to make from an relative page path and absolute one as string in wicket 7 or 8? In wicket 1.4 it was quite a mess where one had to manually build it from string and this tended to be quite buggy (and much much code), and I somehow hope that it may now be easier in tim

Re: AjaxFormComponentUpdatingBehavior not triggering ListChoice model update in Firefox in Wicket 7.9.0

2017-10-11 Thread Korbinian Bachl
Hi Chris, can it be that you have 2 instances of jQuery in your page? - bootstrap.js often comes with embedded jQuery and then you would overwrite the wicket one with the bootstrap one, that will lead to problems where you dont get notfied at all. I know this from foundation / sites, where you

Re: AjaxFormComponentUpdatingBehavior not triggering ListChoice model update in Firefox in Wicket 7.9.0

2017-10-11 Thread Korbinian Bachl
e > together. > > ./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.12.4.js > > ./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/3.3.7-1/js/bootstrap.js > > >> -Original Message- >> From: Korbinian

manual resolving of path

2018-04-11 Thread Korbinian Bachl
Hi, where would I need to look at if I wanted to resolve the path from the root of the webapplication inside a wicket application root? e.g.: domain.com <- has wicket app on ROOT deployed domain.com/foo <- path mapped to foo-webpage domain.com/foo/bar <- I now want to get the request not resolv

Re: manual resolving of path

2018-04-13 Thread Korbinian Bachl
Hello Bas, thank you very much - that really led me to what I needed. Best, KB - Ursprüngliche Mail - > Von: "Bas Gooren" > An: users@wicket.apache.org, "Korbinian Bachl" > > Gesendet: Mittwoch, 11. April 2018 11:01:58 > Betreff: Re: manual re

make all links to absolute ones?

2018-04-28 Thread Korbinian Bachl
Hi, in wicket 8 (M9) in RequestCylce there is protected UrlRenderer newUrlRenderer() { // All URLs will be rendered relative to current request (can be overridden afterwards) return new UrlRenderer(getRequest()); } but how can I override it with a

Re: make all links to absolute ones?

2018-04-30 Thread Korbinian Bachl
Thanks a lot Martin! I now did an quick override of it and now all URLs are absolute like I wanted them to be... Is there a special reason why wicket is so into this relative nightmare? I mean, why not just make all either absolute or full-URLs? I mean depending on the Url paths you get so gr

wicket component lifecycle after form submit

2018-05-08 Thread Korbinian Bachl
Hi, from https://ci.apache.org/projects/wicket/guide/8.x/single.html#_lifecycle_stages_of_a_component and https://ci.apache.org/projects/wicket/guide/6.x/guide/componentLifecycle.html I see how the lifecycle of a wicket component is intended to be. But how does it go for the lifecycle of a co

Re: wicket component lifecycle after form submit

2018-05-08 Thread Korbinian Bachl
- Ursprüngliche Mail - > >> But how does it go for the lifecycle of a component on a page where the >> page gets submitted by a form in another component? >> > > I do not understand this sentence It may sound a bit awkward but the situation is like this: Page with componentes A, B, C

wicket 8 / RootRequestMapper vs CompoundRequestMapper

2018-06-11 Thread Korbinian Bachl
Hi, situation: I need to add some "special" URL handling for certain URLs to have product pages and catalog pages on root. As we also use brix we already have at least one compoundRequestMapper already in use. Now, wicket seems to have 2 places for that. A new RootRequestMapper e.g.: YourAppli

Re: wicket 8 / RootRequestMapper vs CompoundRequestMapper

2018-06-11 Thread Korbinian Bachl
ed to make sure I'm the first one in the hierarchy. But where would I then rewrite the generated URLs? Best, KB - Ursprüngliche Mail - > Von: "Bas Gooren" > An: users@wicket.apache.org, "Korbinian Bachl" > > Gesendet: Montag, 11. Juni 2018 12:06:12

Re: wicket 8 / RootRequestMapper vs CompoundRequestMapper

2018-06-11 Thread Korbinian Bachl
b/950403d5ccea5643e6005450c6b808ea72079d59/wicket-core/src/main/java/org/apache/wicket/protocol/http/WebApplication.java#L319 > https://github.com/apache/wicket/blob/950403d5ccea5643e6005450c6b808ea72079d59/wicket-core/src/main/java/org/apache/wicket/Application.java#L741-L750 > > On Mon,

Re: wicket 8 / RootRequestMapper vs CompoundRequestMapper

2018-06-11 Thread Korbinian Bachl
38:43 > Betreff: Re: wicket 8 / RootRequestMapper vs CompoundRequestMapper > On Mon, Jun 11, 2018 at 1:33 PM, Korbinian Bachl < > korbinian.ba...@whiskyworld.de> wrote: > >> Hi, >> >> thanks a lot for the clarification. So say I want to do some kind of path >>

ListenerRequestHandler / urls from the past... - component not found

2018-06-29 Thread Korbinian Bachl
Hi, I've got some problems with 404/ 500 error codes in my wicket app that happen to come from the past... Now, when wicket makes any url for a component this one gets added to the path, e.g.: http://examples7x.wicket.apache.org/forminput/?0-1.IFormSubmitListener-inputForm So when time goes by

Re: ListenerRequestHandler / urls from the past... - component not found

2018-06-30 Thread Korbinian Bachl
Von: "Bas Gooren" > An: users@wicket.apache.org, "Korbinian Bachl" > > Gesendet: Freitag, 29. Juni 2018 12:06:39 > Betreff: Re: ListenerRequestHandler / urls from the past... - component not > found > Hi! > > I think there are many ways to fix this,

Re: ListenerRequestHandler / urls from the past... - component not found

2018-06-30 Thread Korbinian Bachl
rmSubmitListener-inputForm" *is* a parameter, it just doesn't > have a value. > > How would renaming that parameter improve anything? > > Have fun > Sven > > > Am 30.06.2018 um 12:06 schrieb Korbinian Bachl: >> Thanks for the answer - that gives me the ri

Re: ListenerRequestHandler / urls from the past... - component not found

2018-06-30 Thread Korbinian Bachl
’s something you can fix by embedding a canonical url in your > page. It tells search engines to ignore all other urls for that page, > including the ones with wicket info in them. > > // Bas > > Verstuurd vanaf mijn iPhone > >> Op 30 jun. 2018 om 19:41 heeft Korbinia

Re: Demo Page with User Related Data

2018-09-25 Thread Korbinian Bachl
Hi, take a look at https://ci.apache.org/projects/wicket/guide/8.x/single.html#_components_lifecycle You might want to move the code from constructor to onInitialize() and you can use onRemove() to free it up as this is called when the component gets removed from the page / the page itself ge

Re: Demo Page with User Related Data

2018-09-25 Thread Korbinian Bachl
>> and you can use >> onRemove() >> to free it up as this is called when the component gets removed from the >> page / the page itself gets removed; >> > > "the page itself gets removed" > I think this is not correct. > As far as I understood all pages go after creation und usage to the page stor

Re: Demo Page with User Related Data

2018-09-26 Thread Korbinian Bachl
Hi, in case of a regular session you can use a HttpSessionListener and use the public void sessionDestroyed(HttpSessionEvent event), similar to that one here: https://stackoverflow.com/questions/7756054/how-to-call-a-method-before-the-session-object-is-destroyed (wicket is still a java framework,

multiple AjaxFileDropBehaviour on single page

2019-08-12 Thread Korbinian Bachl
Hi, wicket 8 has this neat AjaxFileDropBehaviour and it works like charm. However, if I have multiple components on one page with a AjaxFileDropBehaviour each and the upload of 1 drop is running, i cant upload a 2nd one at the same time; Any idea how to solve this? E.g.: File 1 with 100MB get

Re: multiple AjaxFileDropBehaviour on single page

2019-08-13 Thread Korbinian Bachl
AjaxFileDropBehaviour doesn't > support this though. > > Have fun > Sven > > > On 13.08.19 08:19, Korbinian Bachl wrote: >> Hi, >> >> wicket 8 has this neat AjaxFileDropBehaviour and it works like charm. >> However, >> if I have multiple co

AttributeModifier values gets escaped

2019-08-18 Thread Korbinian Bachl
Hi, I try to manipulate some tags on an WebMarkupContainer called image. If I do: image.add(AttributeModifier.replace("src", imgUrl + "?a=1&b=2")); the src is not as expected: "...?a=1&b=2" but its escaped as "...?a=1&b=2" I tried setEscapeModelStrings false on the image itself, wont work

Re: AttributeModifier values gets escaped

2019-08-18 Thread Korbinian Bachl
replace("src", imgUrl + "?a=1&b=2")); > > Have fun > > Sven > > > On 18.08.19 13:13, Korbinian Bachl wrote: >> Hi, >> >> I try to manipulate some tags on an WebMarkupContainer called image. If I do: >> >> image.add(AttributeM

Wicket.Ajax.Call.processEvaluation // how to not get reference errors in case one has to check for a var?

2020-04-02 Thread Korbinian Bachl
Hi, i've added some JS to be exectued after AJAX but wicket always sees an error where none is: Wicket.Ajax: Wicket.Ajax.Call.processEvaluation: Exception evaluating javascript: ReferenceError: etCommerce is not defined, text: (function(){var p= { ... } if(etCommerce) { etCommerce.sendEven

Re: Wicket.Ajax.Call.processEvaluation // how to not get reference errors in case one has to check for a var?

2020-04-02 Thread Korbinian Bachl
to check for a var? > Hi Korbinian, > > Wicket just evaluates your JS, if you get a ReferenceError then surely > there's something wrong in your code. > > Are you sure you're looking on the correct source line? > > Have fun > > Sven > > > On 0

Re: Wicket.Ajax.Call.processEvaluation // how to not get reference errors in case one has to check for a var?

2020-04-02 Thread Korbinian Bachl
hen surely > there's something wrong in your code. > > Are you sure you're looking on the correct source line? > > Have fun > > Sven > > > On 02.04.20 15:57, Korbinian Bachl wrote: >> Hi, >> >> i've added some JS to be exectued aft

best way to get wysiwyg with wicket

2020-04-03 Thread Korbinian Bachl
Hi, I need to be able to let complete novices edit and write nicely formatted texts in an backend thats powered by wicket (required e.g.: H1-H4, normal text, bold text, images - only simple stuff mostly). In the past I used the ckeditor but that outputs html and Im not sure that cluttering font

Re: best way to get wysiwyg with wicket

2020-04-04 Thread Korbinian Bachl
parent > https://github.com/wicketstuff/core/tree/master/tinymce4-parent > > > On Sat, 4 Apr 2020 at 01:24, Korbinian Bachl > wrote: > >> Hi, >> >> I need to be able to let complete novices edit and write nicely formatted >> texts in an backend thats pow

Re: Does wicket 9 support reactive programming?

2020-09-18 Thread Korbinian Bachl
Maybe Ajax https://ci.apache.org/projects/wicket/guide/9.x/single.html#_creating_custom_ajax_call_listener or Websockets https://ci.apache.org/projects/wicket/guide/9.x/single.html#_native_websockets - Ursprüngliche Mail - > Von: "Emmanuel Sowah" > An: "users" > Gesendet: Freitag,

RedirectRequestHandler and HttpHeader?

2021-08-22 Thread Korbinian Bachl
Hi, I call this: getRequestCycle().scheduleRequestHandlerAfterCurrent(new RedirectRequestHandler("myNewURL",301)); How could I add a custom HttpHeader to the response? e.g.: Cache-Control: max-age=300 Best, KB - To unsubsc

Re: RedirectRequestHandler and HttpHeader?

2021-08-23 Thread Korbinian Bachl
Header(...); > response.setRedirect("..."); > }); > > Play with it but you should set the headers in the response after the > redirect happens. > > Martin > > >> Jon >> >> >> From: Korbinian Bachl >> Sent: Sunday, Augu

Re: RedirectRequestHandler and HttpHeader?

2021-08-23 Thread Korbinian Bachl
e SEO guys :X) Thanks for your help! Best, KB - Ursprüngliche Mail - > Von: "Martin Grigorov" > An: "users" > Gesendet: Montag, 23. August 2021 11:30:50 > Betreff: Re: RedirectRequestHandler and HttpHeader? > On Mon, Aug 23, 2021 at 11:37 AM K

Wicket 8 + 9 on jdk17?

2021-10-06 Thread Korbinian Bachl
Hi, has anyone any details about using of wicket 8.x or 9.x under jdk 17? We currently just migrated from jdk8 to jdk11 as runtime in production and wicket 8.x was fine under all things (still had some problems with third party libs however). Next we want to go to wicket 9.x but since there are

migration from wicket 8 to 9 -> PageManagerProvider

2021-11-10 Thread Korbinian Bachl
Hi, Im currently migrating our applications from wicket 8 to wicket 9.6 and so far it was a real breeze. I'm very impressed! One thing however that puzzles me is the following code I had in the application init(); setPageManagerProvider(new DefaultPageManagerProvider(this) { prote

Re: migration from wicket 8 to 9 -> PageManagerProvider

2021-11-10 Thread Korbinian Bachl
ssionPageStore has a maxBytes constructor too. > Watch out for the override of the #getKey() method - I'm not happy with > that, but your question triggers me to look into that once again. > > Have fun > Sven > > > On 10.11.21 12:05, Korbinian Bachl wrote: >> Hi

Re: prevent client request being intercepted for attack

2022-05-27 Thread Korbinian Bachl
Use HTTPS with TLS Also note: if you or your service operates within the EU and you dont secure this via encryption you are violating the GDPR! - Ursprüngliche Mail - > Von: "Arunachalam Sibisakkaravarthi" > An: "users" > Gesendet: Freitag, 27. Mai 2022 09:27:14 > Betreff: prevent cli

Re: Wicket 10 Release Plans

2023-09-10 Thread Korbinian Bachl
Hi Fellow Wicket-Devs! I'd like to also ask this question as wicket is the only part that holds us back from jumping up to JakartaEE (currently JavaEE 8). Any eta on final release? - Ursprüngliche Mail - > Von: "Tony Tkacik" > An: "users" > Gesendet: Donnerstag, 7. September 2023 13:

Re: Wicket 10 Release Plans

2023-09-11 Thread Korbinian Bachl
uncement (coordinated with press@a.o) has proved to be an > issue for the last few major releases! I'd rather go without it than delay > the release for half a year. > > >> moment I don't have elements to be more precise, but probably after the M2 >> we will have

ModalWindow to ModalDialog // closedCallback

2023-10-20 Thread Korbinian Bachl
Hi, when I try to migrate a ModalWindow to ModalDialog i came accross this: add(new AjaxLink("edit") { @Override public void onClick(AjaxRequestTarget target) { getModalWindow().setModel(ReferenceEditorPanel.this.getModel()); getModalWindow

Getting more details into the logs for Component warning

2024-06-17 Thread Korbinian Bachl
Hi, it seems as I somewhere made a set MarkupId on a component that renders body only. I got much like this: [[WARN - Component - Markup id set on a component that renders its body only. Markup id: ida0ce, component id: body.]] The markup id seems a repeater generated one. An

Re: Getting more details into the logs for Component warning

2024-06-18 Thread Korbinian Bachl
t at > https://github.com/apache/wicket/blob/b2d55be7b06d736b2085387ecc29cdd22540b588/wicket-core/src/main/java/org/apache/wicket/Component.java#L2480 > Feel free to send a Pull Request with more details in the log message! > > On Tue, Jun 18, 2024 at 9:32 AM Korbinian Bachl > wrote: > >> Hi, >> >>

Re: Advanced examples for Wicket

2024-06-21 Thread Korbinian Bachl
Hi Andrea, really nice! One thing I stumbled upon is the "Remove page id from URL". While its great to have it away from the page url itself, its still in the AJAX links e.g.: https://examples9x.wicket.apache.org/ajax/editable-label?5 -> ... Wicket.Ajax.ajax({"u":"./editable-label? 5

wicket and stateless ajax?

2024-07-01 Thread Korbinian Bachl
Hi, is there any guide or direct guidance on how to make complete stateless ajax components? For example on a simple AjaxEventBehaviour "onClick" its enought to supply a unique ID thats reachable, but if you have an Ajaxified Panel that has sub-"clicks" on it, I cant find a way to make the sub

Re: Bookmarkable ModalWindow

2024-08-03 Thread Korbinian Bachl
https://github.com/wicketstuff/core/issues/984 :) - Ursprüngliche Mail - > Von: "Ernesto Reinaldo Barreiro" > An: "users" > Gesendet: Freitag, 2. August 2024 18:06:04 > Betreff: Re: Bookmarkable ModalWindow > Hi, > > Does this refer to the Old modal window or the new Modal window? >

Re: Bookmarkable ModalWindow

2024-08-03 Thread Korbinian Bachl
Ah the good'ol times where you need an extra workaround for anything :D I never said the old ModalWindow was great, but its in so many places and for Jakarta one needs wicket 10 :S - Ursprüngliche Mail - > Von: "Ernesto Reinaldo Barreiro" > An: "users" > Gesendet: Samstag, 3. August

ModalDialog - why no dialog?

2024-08-03 Thread Korbinian Bachl
Hi, why is it that the new "ModalDialog" doesn't use the "" elemt? But a instead with the need of custom css? -> https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog And why are the https://examples9x.wicket.apache.org/ajax/modal-dialog crashing (code 503) when I open a dozen sta

Re: Nicer URLs in Wicket

2007-07-30 Thread Korbinian Bachl
Hi Matej, looks really great! - One thing I dont understand ist: You wrote: * The redirect is necessary for pages with AJAX stuff, so that the > > > page instance is preserved on reload (otherwise with bookmarkable URL > > > new instance of page would be created on every reload, which discards >

Re: London Wicket - Bean Editor talk available on-line.

2007-08-19 Thread Korbinian Bachl
Hi Al, i just watched it - the content and quality is awesome! What software did you use to make this and how long took it? If it was not so much work, couldnt this be a new "wicket" way of having some kind of video-documentation like this right on the main wicket webpage? As some kind of ra

Re: Can we do straight print in a java web application?

2007-08-19 Thread Korbinian Bachl
I had this sort of poblem some time ago. In the end the PDF solution was the best because of - same look on all printers / no problems with printer-types (borders/ special chars/ drivers etc.) - all platformas availabe - can scale from 1 to thousands of users without any change (beside the se

Re: Can we do straight print in a java web application?

2007-08-19 Thread Korbinian Bachl
d always go through the print dialog box... Thanks in advance 2007/8/19, Korbinian Bachl <[EMAIL PROTECTED]>: I had this sort of poblem some time ago. In the end the PDF solution was the best because of - same look on all printers / no problems with printer-types (borders/ special chars/ dr

Re: London Wicket - Bean Editor talk available on-line.

2007-08-19 Thread Korbinian Bachl
well so far - only some special tools like ERM seems a bit underpresent on the mac. Regards Martijn Dashorst schrieb: On 8/19/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: PS: sidequestion as i noted that many of you are working on macs. I chaged from pc to a MacBook Pro some weeks ag

wicket contrib yui

2007-08-27 Thread Korbinian Bachl
Hi, i stumbled over yui some time ago, and noticed that there is also a wicket-contrib-yui project. However, the version under https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-contrib-yui/ seem to rely on 2.2.0. Are there any plans for a 2.3.0 or sth. like that? Bes

Re: wicket contrib yui

2007-08-28 Thread Korbinian Bachl
porting it the headercontributor to yuiloader, that would be great too. best, jim On 8/27/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi, i stumbled over yui some time ago, and noticed that there is also a wicket-contrib-yui project. However, the version under https://wicket-stuff.svn.

Re: wicket contrib yui

2007-08-29 Thread Korbinian Bachl
lity to have other YUI versions as well? Regards Korbinian James McLaughlin schrieb: On 8/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi James, i checked out of svn today and changed yui to 2.3.0 - at first, all seemed ok, but when looking closer its a bit irritating. No doubt. Exac

Re: wicket, spring and aop

2008-04-04 Thread Korbinian Bachl - privat
Hello, im quite new to spring, but afaik you cant have spring manipulating wicket itself; however you could create a spring based proxy-class for those purposes and have it used by @SpringBean(name="name") where you put the logic in it; maybe its possible to have a wicket-PageClass be also a

Re: Removing the jsessionid for SEO

2008-04-04 Thread Korbinian Bachl - privat
Hi Jeremy, Hi Dan, for a project long ago I had the trail of making a product-browser SEO friendly; I used a plain PagingNavigator at first, and then extended it to have it to use the IndexedUrlPageParameters; this allowed me to put anything into the path to have a nice URL; the key here is

Re: Maven multi module app using wicket spring hibernate

2008-04-07 Thread Korbinian Bachl - privat
you need to assign the correct application class (fully path!) derived from WebApplication -> is outcommented and not set, correct this; also remember to call addComponentInstantiationListener(new SpringComponentInjector(this)); in your application's init() function Best Korbinian pxk sc

Re: property file

2008-04-07 Thread Korbinian Bachl - privat
Hi, you mean for i8n issues? if you want to use properties on your pages you dont need to mess with the file, just use it in your label or message-resource, look here for some simple cases: http://cwiki.apache.org/WICKET/general-i18n-in-wicket.html Best, Korbinian tbt schrieb: Hi, I lik

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
Hi Mathias, in short: you cant; the @SpringBean injection is usually done before the class is really created so at a time wicket and spring aren't registered yet; What you could do (not 100% sure) would be to call a simple proxy-pojo that gets you the data (even maybe a LoadableDetachable on

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
Hi, > How can I use this in my wicket page? I have looked at getLocalizer() but > there is no were to set the name variable. How can I use this in wicket? you could start using the search function on the mailinglist or browisng the wicket wiki as we had this question just 23 hours ago htt

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
d use AnnotSpringWebApplication or "manually" setup injector in InjectorHolder: InjectorHolder.setInjector(new AnnotSpringInjector(getSpringContextLocator())); -- Daniel On Tue, Apr 8, 2008 at 10:19 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: Hi Mathias, in short: you ca

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
well, in your case its not an "easy" string, but one with 2 parameters - in case you have a plain string you can also use the wicket:message method that is quite better suited for this (e.g: 2 message blocks - 1 before, 1 after and in middle a simple label that spews out the user data); if you

  1   2   >