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
; > An: "users" > Gesendet: Mittwoch, 10. November 2021 20:31:52 > Betreff: Re: migration from wicket 8 to 9 -> PageManagerProvider > Hi Korbinian, > > > it was a real breeze. I'm very impressed! > > thanks, glad to hear that. > > You application

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) ? Best, KB - Ursprüngliche Mail - > Von: "Martin Grigorov" > An: "users" > Gesendet: Montag, 23. August 2021 10:03:34 > Betreff: Re: RedirectRequestHandler and HttpHeader? > Hi Korbinian, > > I am not sure this is possible. > You coul

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
uot; > An: "users" > Gesendet: Donnerstag, 2. April 2020 17:56:53 > Betreff: Re: Wicket.Ajax.Call.processEvaluation // how to not get reference > errors in case one has to check for a var? > Hi Korbinian, > > Wicket just evaluates your JS, if you get a ReferenceError t

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
if(etCommerce) check beforehand? Best, KB - Ursprüngliche Mail - > Von: "Sven Meier" > An: "users" > Gesendet: Donnerstag, 2. April 2020 17:56:53 > Betreff: Re: Wicket.Ajax.Call.processEvaluation // how to not get reference > errors in case one has

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
21:30 > Betreff: Re: AttributeModifier values gets escaped > Hi Korbinian, > > AttributeModifier always escapes its value, there's no way around that. > > Why aren't you starting with an escaped url in the first place? > > image.add(AttributeModifier.

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
times of wicket 8 and java 8; The idea is to have a basic funtion e.g: public static String toAbsolutePath(String relativePagePath) where one could enter the relativePagePath, relative to the current URL in the browser window; Best, Korbinian

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

2016-05-15 Thread Korbinian Bachl
s for your help! Best, Korbinian - Ursprüngliche Mail - > Von: "Martin Spielmann" > An: users@wicket.apache.org > Gesendet: Sonntag, 15. Mai 2016 11:47:07 > Betreff: Re: wicket 6.x / java.text.ParseException on multiple div's > Hello Korbinian, >

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

2016-05-15 Thread Korbinian Bachl
Hello Per, yes, when I remove just 1 of the 2 div's it works instantly; I can tigger this by putting in: A B and he complains Best, Korbinian - Ursprüngliche Mail - > Von: "Per Newgro" > An: users@wicket.apache.org > Gesendet: Sonntag, 15. Mai 201

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

2016-05-15 Thread Korbinian Bachl
Hello Martin, I tried to look for this but I isn't that easy. He really complains about fine closed div's if I remove the mentioned div's it renders fine; I can trigger the error when I just enter this into my page HTML: A B and thats a perfectly fine HTML

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

2016-05-15 Thread Korbinian Bachl
ntent                                                content          So what is going on here? Why does wicket complain about those poor div's? Is there any way I can disable this check for div's??? For me this behaviour seems as a bug as div following a div is perfectly fine HTML code? B

Re: wicket 6.x / FeedbackPanel StackOverflowError

2016-05-14 Thread Korbinian Bachl
(loginForm.hasError()) { setVisible(true); } else { setVisible(false); } } The lifecycle is a bit off from my wicket 1.3/ 1.4 memories it seems :) Best, Korbinian - Ursprüngliche

wicket 6.x / FeedbackPanel StackOverflowError

2016-05-14 Thread Korbinian Bachl
xistingPanel.java:92) repeating the error dozens of times; Did anything change here that makes the good old isVisible() not usable anymore? Best, Korbinian - To unsubscribe, e-mail: users-unsubscr...@wicket.apach

Re: how to add rel="nofollow" to all links

2013-04-18 Thread Korbinian
rel="nofollow" will tell to not weight it but google will still go it - a way to stop this is by doing a robots.txt e.g.: User-agent: * disallow: /*?wicket for wicket 1.4 does the trick, in your case User-agent: * disallow: *ILinkListener* might work - can test this with the google webmaster

Re: how to prevent the log file was full of exceptions

2012-09-03 Thread Korbinian
Hi, exceptions are usually thrown with a reason - and the main reason why you get so much in your log is that brix with wicket 6 isnt yet finished. Especially the url-sharing part between brix and wicket is quite a problem as brix relies on "full control" of the space while wickt 5 + 6 introduc

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 CM

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
ad. Beside that I found a wicket-jbpm project on google, but it looks quite abandoned with latest updates from last year and targeting an old jBPM 3 version. If anyone has knowledge of any workflow/ BPM solution and wicket I would be really happy to hear. Best,

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

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,

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

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 w

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Korbinian Bachl - privat
hmmm... german google tells me a different list ;) but ty anyway Martin Funk schrieb: how about: http://www.google.com/#hl=en&q=508&aq=f&oq=&aqi=g10&fp=JchEd6hFBSg Thnx to google I'm only half as dumb as I used to be. Cheers Korbinian whiskyworld.de Bachl :-) mf

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
y things I miss is: -> as you use Hibernate directly you really should mention databinder (databinder.net) somehow, as this spares you much work in that way -> some more words to the image thing, as its IMHO not clear why youre doing this for a pastebin-like app *Thumbs up*, Korbin

Re: Blob or File for Images

2009-02-28 Thread Korbinian Bachl - privat
big part of its code is written by Igor :) Best, Korbinian Should I stay or Should I go? ;-) thats obviously a thing your gilfriend has to answer... ;D f(t) - To unsubscribe, e-mail: users-unsubscr...@wicket.apach

Re: [OT] Simple file repository?

2009-02-23 Thread Korbinian Bachl - privat
Hope this one helps you get started. Best, Korbinian PS: you also might want to have a look at Brix-CMS http://code.google.com/p/brix-cms/ and checkout the latest src to see how they implemented and used it (latest is on JR 1.5.2 IMHO)! Kaspar Fischer schrieb: Thank you all very much for your

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("collectionIte

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

2008-09-29 Thread Korbinian Bachl - privat
WhiskasApplication /* so, what can be wrong there? - web.xml seems 100% fine to me. Is there anything that has to be put into the application.xml? Best, Korbinian James Carman schrieb: We don't use JPA at work, but we use OSIV (we're using straight hib

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

2008-09-29 Thread Korbinian Bachl - privat
really? - I tried it but... would you please be so nice and post the part of the web.xml where it is mapped and the corresponding part of the spring-application.xml ? what wicket version are you on? what runtime (Tomcat 6?)? Best, Korbinian James Carman schrieb: On Mon, Sep 29, 2008 at 7

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

2008-09-29 Thread Korbinian Bachl - privat
and the usage of class="org.springframework.orm.jpa.JpaTransactionManager"> for that (latter one is used by me, too) However, the OpenSessionInViewFilter will not work with wicket, even if mapped to "/*" in the web.xml Best, Korbinian Nino Saturnino Martinez Vazquez

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
ceBehavior(getAdvancedSettings()); Best, Korbinian btakacs schrieb: Hi If I try to add the TinyMCEPanel to my page it doesn't appear. If I try to add parameters, and some extra marups, it throws the following exception: WicketMessage: Markup of type 'html' for component 'com.myapp.w

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

2008-08-29 Thread Korbinian Bachl - privat
asp? If you got any questions, feel free to ask! Best, Korbinian PS: you also could have a look a osCommerce to see how you shouldn't do it :P James Perry schrieb: Thanks to the individuals who have both replied to the thread and emailed me personally. I will get the ball rolling next wee

Re: Dynamically Making changes to Tree Node

2008-08-02 Thread Korbinian Bachl - privat
E IM A NODE IM A NODE TheContentYouWant (case of 3 Nodes you get 3 stacked divs - place whatever you like; Wicket is all about OO so inheriting itself and recursive calls are no problem at all. Best, Korbinian

Re: [ANN] Brix 1.0 beta1

2008-07-24 Thread Korbinian Bachl - privat
s that fit your needs and could be shared among your shops mostly. Best, Korbinian Jeremy Thomerson schrieb: Igor, I'm curious about your use of it in ecommerce sites. Several friends of mine want small shops built for them so that they can sell some things online. Until this point,

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
d it with some informational area - could you just embed brix into it or would this mean some bigger changes to the rest of the pet-shop? Best, Korbinian Igor Vaynberg schrieb: we have released Brix 1.0 beta1 [1] yesterday. for those of you who do not know what Brix is, it is an embeddable

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
context menu, that'll do it; Hope that helps, Korbinian Sergey Podatelev schrieb: Hello Wicket people, I'm experiencing a strange behavior of Netbeans (6.0.1) IDE working with Wicket-Security components. Maybe this question is more Netbeans- than Wicket-related, but I thought I

FactoryPattern + Forms/ Enclosures + Feedback

2008-04-15 Thread Korbinian Bachl - privat
rrors)? 2nd; how can I bind an wicket:enclosure to a feedbackform? I tried to override the isVisible() of the feedback by isVisibel() { return anyError(); } but that didnt work; What would the optimal code be to use it? Best, Korbinian --

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
regular google index refreshes that happen some times a year - you should keep an eye onto this; Best, Korbinian Rüdiger Schulz schrieb: Hello everybody, I just want to add my 2 cents to this discussion. At IndyPhone we too wanted to get rid of jesessionid-URLs in google's index. Yea

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

Re: Shared resources with parameters?

2008-04-13 Thread Korbinian Bachl - privat
get_myfile.ending -> your param "example" then holds "mytarget_myfile.ending" wich needs to be rechanged then; the page itself might hold a simple Label that displays the content based on the params; Hope that helps to get started, Best, Korbinian Erik van Oosten schrieb: Hi, I

Re: Removing the jsessionid for SEO

2008-04-13 Thread Korbinian Bachl - privat
duplicate content spammer; Best, Korbinian Jeremy Thomerson schrieb: If I understood you correctly, the first page is bookmarkable, the second is a wicket URL, tied to the session. That'd be bad for SEO - search engines couldn't see page 2, or they would, but the URL is tied to the

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
ng several mailcontent.html mailcontent_en.html might be easier so you just put in the hard facts using simple label; if its just this one line however your solution is best IMHO; Best, Korbinian Mathias P.W Nilsson schrieb: This is what I got so far new StringRes

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
Ah, shame on me! youre right - in case of extending SpringWebApplication it works; in case of ext. WebApplication it wont work - thats what I mixed up - but only if not using @SpringBean but the get direct; thx for info Daniel, Regards, Korbinian Daniel Stoch schrieb: Hi, I think he can

Re: localizer and variables

2008-04-08 Thread Korbinian Bachl - privat
rs ago http://cwiki.apache.org/WICKET/general-i18n-in-wicket.html shows you how to use it; Regards, Korbinian Mathias P.W Nilsson schrieb: Hi! In my property file i can do this email.subject=Hi {name}! Here is your confirmation. How can I use this in my wicket page? I have looked at getLoc

Re: @SpringBean in init

2008-04-08 Thread Korbinian Bachl - privat
Best, Korbinian Mathias P.W Nilsson schrieb: Hi! I have extended the SpringWebApplication and the init method looks like addComponentInstantiationListener(new SpringComponentInjector(this)); I want to access my @SpringBean in the init method but it fails. How can I do this? I need to cache all users f

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

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 Korbin

Re: Removing the jsessionid for SEO

2008-04-04 Thread Korbinian Bachl - privat
also seems interesting to me, can you give more details about it? Best, Korbinian Jeremy Thomerson schrieb: - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   >