Re: wicket ajax-script location

2024-10-16 Thread Korbinian Bachl
t; Betreff: Re: wicket ajax-script location > On Wed, Oct 16, 2024 at 9:47 AM Korbinian Bachl > wrote: > >> Thanks a lot! >> >> However, here I would have to touch the pages + html to have a >> >> at the bottom of the page. >> >> Is there any w

Re: wicket ajax-script location

2024-10-15 Thread Korbinian Bachl
t; Von: "Martin Grigorov" > An: "users" > Gesendet: Mittwoch, 16. Oktober 2024 08:15:09 > Betreff: Re: wicket ajax-script location > On Wed, Oct 16, 2024 at 9:00 AM Korbinian Bachl > wrote: > >> Hi, >> >> when using anything AJAX wicket will generate some inline scripts in the >> header like this: >> >>

wicket ajax-script location

2024-10-15 Thread Korbinian Bachl
Hi, when using anything AJAX wicket will generate some inline scripts in the header like this:

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2012-05-08 Thread Korbinian Bachl - privat
Hi, some hints: Make sure the jvm the server is running in is started with (I assume JRE 1.6 -> 1.6.0_32): -server -XX:+UseConcMarkSweepGC -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled Also make sure permGen is specified big enough, e.g: -XX:MaxPermSize=384m Also, I wouldn't

Re: Wicket 1.5 and glassfish 3.1.1 clustering (session replication)

2011-08-03 Thread Korbinian Bachl - privat
Hello, Vytautas, can you please make a bugreport on http://java.net/jira/browse/GLASSFISH 3.1.1 indeed has some quirks, but its better than 3.1; HTTP/HTTPS and wicket will loose JSessionId (http://java.net/jira/browse/GLASSFISH-17131) a.t.m. but if we give nice bug reports they will get fixed

Re: [Vote] New Wicket Version Numbering

2011-04-01 Thread Korbinian Bachl - whiskyworld
OMG?!? ARE YOU SERIOUS??? Here we are already using WINDOWS 2000 with OFFICE 2010 ;) (Note: never ever believe any mails, blogs, newspapers on april 1st *g*) Am 01.04.11 20:14, schrieb nino martinez wael: Gotta be a aprils fools thing.. Who would decide what framework to be used based on ve

Re: Wicket and Amazon EC2

2011-03-03 Thread Korbinian Bachl - privat
PS: please forget the link to ubuntu-setup - they try to promote their landscape there, made a mistake :( instead just use the aws-console with these preconfigured AMIs: http://uec-images.ubuntu.com/releases/lucid/release/ Am 03.03.11 06:15, schrieb ookpalm: Not at all? -- View this mess

Re: Wicket and Amazon EC2

2011-03-03 Thread Korbinian Bachl - privat
As long as you're using any EC2 instance with an EBS-AMI its just another server you can deploy any operating system on you like. Only remind that you mustn't terminate the machine but only stop/pause it as terminating equals to throwing away the server in reality while pausing means to shut i

Re: Brix CMS : Based Wicket framework

2010-12-10 Thread Korbinian Bachl - privat
Hello Moez, the link to the repo is wrong. Brix is no longer on googlecode but on github: https://github.com/brix-cms/brix-cms Keep spreading the word for Brix, best, Korbinian Am 10.12.10 15:58, schrieb moèz ben rhouma: It's very important for wicket users to now what is Brix CMS. So s

Re: URLs using wicket wizard

2010-12-01 Thread Korbinian Bachl - privat
What type of URLCodingStrategy do you use? IMHO the HybridURLCodingStrategy should do what you want Best Am 01.12.10 10:13, schrieb bamse: I am rather new to Wicket, still I am building an application using the Wizard-functionality, since this is very suitable for the app. The app consist

wicket + BPM/ jpbm

2010-11-29 Thread Korbinian Bachl - privat
Hello, as I had no luck in the ICQ channel, I post it here: Has anyone some knowledge about putting wicket and BPM together? I saw that there was a wicketBPM project in past by "kgalligan" under http://bigheadco.blogspot.com/2007/02/wicket-bpm-update.html but email and site are dead. Beside t

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-09 Thread Korbinian Bachl - privat
Oh, didn't know that - thx :) in fact I haven't yet had any situation where I needed the JPA-API from maven but not any persistence library as well; Nino, for what is it good for in your case? Best Am 09.09.10 09:34, schrieb Jan Kriesten: Hi Korbinian, in fact the current is 2.1.1, but

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-08 Thread Korbinian Bachl - privat
in fact the current is 2.1.1, but 2.0.0 is reference implementation and for the JPA 2.0 API it wont matter what 2.0.x it is (see scope provided here - just API); - usually one uses JPA API of the persistence provider he's using as long as he won't depend on an app server; Best, Korbinian A

Re: [OT] where is JPA 2.0 API spec in maven?

2010-09-08 Thread Korbinian Bachl - privat
JEE 6: javax javaee-api 6.0 provided JPA 2: org.eclipse.persistence eclipselink 2.0.0 provided Best, Korbinian Am 08.09.10 15:35, schrieb nino martinez wael

Re: Serialization of injected EJBs

2010-07-10 Thread Korbinian Bachl - privat
Hi Igor, as I might hit the problem in next weeks (GF 3.0.1 + EJB + Wicket) i just wanted to ask if your code is public and if not if its possible to scheme out the actions you did so far? Best, Korbinian Am 09.07.10 20:03, schrieb Igor Vaynberg: no, the module is for seam 2.1 which does

Re: Beginner question about wicket:extend

2009-08-14 Thread Korbinian Bachl - privat
Hi, well, wicket and JSP have not much in common beside the fact that they both rely on Java... a simple example for your needs would be this here: http://wicket.apache.org/examplemarkupinheritance.html Best, Korbinian Oliver-Sven Fritsch schrieb: Hi everybody! I'm really new to wicket an

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Korbinian Bachl - privat
Am 11.06.2009 um 10:46 schrieb Korbinian Bachl - privat: dumb question: what is 508? tubin gen schrieb: My application must be 508 , we are using wicket , recentlyheard spring dojo , or spring dwr provides rich UI and ajax support and its 90% 508 complaint is that true ? Please sugges

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Korbinian Bachl - privat
dumb question: what is 508? tubin gen schrieb: My application must be 508 , we are using wicket , recentlyheard spring dojo , or spring dwr provides rich UI and ajax support and its 90% 508 complaint is that true ? Please suggest us If we should go with spring dojo or wicket ?

Re: 5 Days of Wicket

2009-03-10 Thread Korbinian Bachl - privat
Hi Andrew, first I was a bit curious about "another wicket intro"(TM) but after reading it I was amazed. It is one of the best blog entries for wicket starting I've read as it elegantly uses helps like the quickstart and then shows how to config it for real world usage. Only things I miss is

Re: Blob or File for Images

2009-02-28 Thread Korbinian Bachl - privat
Francisco Diaz Trepat - gmail schrieb: Hi all. I am building a small shopping app for my girlfriend who sells women underwear (no, i do not get to run around with hot models, other than the uml ones). HA HA HA! :P *sorry could not resist* As the He-Man of this project I opted for Wicket

Re: [OT] Simple file repository?

2009-02-23 Thread Korbinian Bachl - privat
Hi Kaspar, just to save you some pain: in case of Jackrabbit don't use TransientRepository but RepositoryImpl instead and make it launch in the init() of you app and go down on the onDestroy() (in case you want to bundle it with your app). Transient has some bad behaviour and currently makes

Re: propertycolumn - date column, checkbox column

2009-02-14 Thread Korbinian Bachl - privat
Hi, use AbstractColumn instead and provide a panel that does what you want, eg: columns.add(new AbstractColumn(new Model("CHGE"), "changed") { public void populateItem(Item> cellItem, String componentId, IModel model) { cellItem.add(new ChangedCellPanel(componentI

Re: ListView - modify css for some column

2008-09-29 Thread Korbinian Bachl - privat
you should use DataTable instead of ListView for that; there you can easily manipulate by overriding the getCSS() function of the columns. Best, Korbinian radovan schrieb: Hallo community, my code looks like this: listView = new ListView("collectionIterator", listOfMy

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
ernate). Anyway, for the JPA configuration, you can look at: https://wicketopia.svn.sourceforge.net/svnroot/wicketopia/trunk/jpa-archetype/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml On Mon, Sep 29, 2008 at 7:57 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
:14 AM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: However, the OpenSessionInViewFilter will not work with wicket, even if mapped to "/*" in the web.xml Huh? We use it and it works just fine. By the way, have you tried OpenEntityManagerInViewFilter if

Re: wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
Wael schrieb: Hi Korbinian Im facing the same problems... I also use extended.. So gonna be great to see the outcome of this thread.. I think it could be something about missing usage of loadabledetachable model..? Korbinian Bachl - privat wrote: Hi, I'm currently struggling with th

wicket + spring + jpa/ hibernate = lazy load exception

2008-09-29 Thread Korbinian Bachl - privat
Hi, I'm currently struggling with the famous "lazy load exception" under spring + jpa with wicket. The problem is, in my case, that i pull an entity from the database using a spring-bean (@SpringBean) and JPA (hibernate). Then in the wicket class i need to walk the entity tree a bit, based o

Re: wicket-contrib-tinymce problem

2008-08-29 Thread Korbinian Bachl - privat
AFAIK you should add the tinyMCEBehaviour to the Textarea, sth like this: ta = new TextArea("field", model); ta.setRequired(required); ta.setLabel(new Model(label)); ta.setConvertEmptyInputStringToNull(false); TinyMceBehavior tmb = new TinyMceBehavior(getAdvancedSe

Re: Wicket Cart: open-source e-commerce wicket app

2008-08-29 Thread Korbinian Bachl - privat
Hello James, I'm also quite interested into this, however I'm stuck in work at moment, so don't have too much time. 2 things you really should consider: -> Brix! the CMS mentioned before, developed by 2 wicket-core devs and it would add all content functionality and house the cart, list etc;

Re: Dynamically Making changes to Tree Node

2008-08-02 Thread Korbinian Bachl - privat
He is a core dev - just listen to him :P ok, simple treeNode would be: IM A NODE - and Java: class TreeNode extends Panel { public TreeNode(String id, AnyOtherPossibleThingsYouNeed o) { if(IWantADeeperNodeFromHere) {

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Jeremy, please believe me and *don't* use either osCommerce or XTCommerce. Their code is just useless, they have no way of easy changing things and every release you will need to alter most of your provided code (there is no stable plugin system - they plan to do this for long now but havent b

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Hi Igor! Igor Vaynberg schrieb: On Thu, Jul 24, 2008 at 12:52 PM, Korbinian Bachl - privat <[EMAIL PROTECTED]> wrote: Hi Igor & Company! nice to see your CMS nearly ready! I already had a quick look at it and there is one thing I'm not quite sure about: Is Brix thougt of givi

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
Hi Igor & Company! nice to see your CMS nearly ready! I already had a quick look at it and there is one thing I'm not quite sure about: Is Brix thougt of giving a underlying space and then build a wicket-app on it or is it more a way to extend a existing wicket-app with the features of a CMS?

Re: FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Follow-UP: I solved the problem I had with the listView; it works as expected if you do a .setReuseItems(true); to the ListView However, the problem with the wicket enclose to a feedBackPanel still exists... this one wont work; Korbinian Bachl - privat schrieb: Hello, Ive got 2

Re: Strange behavior of wicket-security libraries in netbeans

2008-04-15 Thread Korbinian Bachl - privat
AFAIK the packages have changed between the Versions, so NB cant find them (thats correct though); try a full recompile (the one with delete & recompile) and you should get the wrong classes in the output; there hit the link to the classes and issue an "Fix Imports" via the right context menu,

FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
Hello, Ive got 2 problems, 1st; I tried the FactoryPattern with form components like TextField and now have the problem, that due to the recreation of the FormFields by the Factory the inserted value into the model gets lost in case of a invalid form submit (e.g: error in one field = all entered

Re: Removing the jsessionid for SEO

2008-04-14 Thread Korbinian Bachl - privat
ot; All I can say in our case is that I added this filter several months ago, and I can't see any negative effects so far. greetings, Rüdiger 2008/4/14, Korbinian Bachl - privat <[EMAIL PROTECTED]>: Hi Rüdiger, AFAIK this could lead to some punishment by google, as he browses th

Re: Removing the jsessionid for SEO

2008-04-14 Thread Korbinian Bachl - privat
Hi Rüdiger, AFAIK this could lead to some punishment by google, as he browses the site multiple times using different agents and origin IPs and in case he sees different behaviours he thinks about cloaking/ prepared content and will act accordingly to it; This is usually noticed after the re

Re: wicket-contrib-javaee

2008-04-13 Thread Korbinian Bachl - privat
make sure you include wicket-ioc as well, as wicket-contrib-javaee depends on it; Best, Korbinian greeklinux schrieb: Hello, I am building an ee application and I want to use wicket in the web tier. Now I find wicket-contrib-javaee on wicketstuff.org and it looks nice. But there is a proble

Re: Shared resources with parameters?

2008-04-13 Thread Korbinian Bachl - privat
Hi Erik, you might want to use IndexedPageParams, so you could do: mount("/myPath", myForwardClass.class); in init; the parameter with index 0 is the first one, the index 1 is second and so on, delimiteds are the ones by "/" eg: myapp.com/myPath/param0/param1/param2 ... and so on; alternat

Re: Removing the jsessionid for SEO

2008-04-13 Thread Korbinian Bachl - privat
Hi Jeremy, youre absolutely right; Nearly all spiders today can handle the default sessions, may it be Java, PHP, .Net etc. ; those guys at google and mircosoft arent beginners! And its also important to understand that a URL with wicket in fact is to a part nothing more than a plain string

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

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

  1   2   >