Re: [Wicket-user] RepeatingView/ Container behaviour

2007-06-02 Thread Korbinian Bachl
t-user] RepeatingView/ Container behaviour > > Wich wicket version did you use for your test? I remember I > fixed a similar bug a few week ago. I don't remember the > details though. > > Juergen > > On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > &

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-05-28 Thread Korbinian Bachl
rChild was only > meant to save you some code :). > > On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > > > Hi Jim, > > > > so if I understnad right then you mean the > > > > protected final void onRender(final MarkupStr

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-05-28 Thread Korbinian Bachl
ld to call it on the child components automatically. > > best, > jim > > On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Jim, > > > > thanks for your post - unfortunately i dont understand what you mean > > exactly: where should I overrrode

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-05-28 Thread Korbinian Bachl
o override > renderChild to get access to the component and setRenderBodyOnly. > > best, > jim > > On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > ive come to a problem I dont know how to solve. I use a BasePage in >

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-05-28 Thread Korbinian Bachl
/ Container behaviour > > What about using: > > > > Eelco > > On 5/28/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > ive come to a problem I dont know how to solve. I use a BasePage in > > wich i have 2 RepeatingViews

[Wicket-user] RepeatingView/ Container behaviour

2007-05-28 Thread Korbinian Bachl
Hello, ive come to a problem I dont know how to solve. I use a BasePage in wich i have 2 RepeatingViews in wich i then put components (dynamic way at runtime - i dont know what component will be in) wicket:header container wicket:content container and they work alright - however

Re: [Wicket-user] Binding pojo to (read only) page

2007-05-28 Thread Korbinian Bachl
sonForm.add(personModel.bind(new > RequiredTextField("city"), "address.city"));) . > > I am looking for a way to put the properties in the wicket > markup and bind the pojo to the page, without coding every > field explicitly. > > > > On 5/28/07,

Re: [Wicket-user] Binding pojo to (read only) page

2007-05-28 Thread Korbinian Bachl
what you want is an CompoundPropertyModel: http://cwiki.apache.org/WICKET/working-with-wicket-models.html > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Kees de Kooter > Gesendet: Montag, 28. Mai 2007 13:15 > An: wicket-user@lists

Re: [Wicket-user] Problem with page parameters

2007-05-27 Thread Korbinian Bachl
A well working solution for mounted pages that dont need PageParameters (only mounted to e.g: /foo but never expecting /foo?bar=asas or sth. like that) is IMHO to have an addition construcor with page(PageParameters params) { page(); } and mount it via mountBookmarkablePage(new IndexedParamUrlCo

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Korbinian Bachl
ECTED] Im Auftrag > von Rüdiger Schulz > Gesendet: Freitag, 25. Mai 2007 13:34 > An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] Problem with jsessionid in mounted > Resources > > Hello, > > 2007/5/25, Korbinian Bachl <[EMAIL PROTECTED]>: > > H

Re: [Wicket-user] Problem with jsessionid in mounted Resources

2007-05-25 Thread Korbinian Bachl
Hi, i dont see the current problem but why dont you just go an easier way in using IndexedParamUrlCoding strategy? e.g: -> create 1 normal Wicket WebPage having a (PageParameters params) strategy -> mount that page in the init() using mount(new IndexedParamUrlCodingStrategy("/images"));

Re: [Wicket-user] Pattern for seperation of Java and Html -Comments Welcome

2007-05-25 Thread Korbinian Bachl
>i am not sure if the server team has changed that mode, but probably it should be development mode is on production servers. Does it cause any problem? well, in developement mode the system is slower and memory problems could occur sometimes (e.g.: just search in list for "too much open files p

Re: [Wicket-user] How to auto-eliminate component from RepeatingView

2007-05-23 Thread Korbinian Bachl
Well, if I understood it right, then its quite easy: you have a "personalList" where you add(Component c) to - you can replace that by addOrReplace(Component c) and if there is a Component with Tag "foo" there then it will be replaced, else it will be put to it. You can also use .remove(Compon

Re: [Wicket-user] Updating item range for ajax pager

2007-05-22 Thread Korbinian Bachl
oh, provided the wrong link, sorry; that one is likely to be your answer: http://cwiki.apache.org/WICKET/how-to-use-ajax-paging-with-dataview.html what do you mean with "the viewed range" ?? - maybe you didnt put all into a spanning web-container? > -Ursprüngliche Nachricht- > Von: [EMAI

Re: [Wicket-user] Updating item range for ajax pager

2007-05-22 Thread Korbinian Bachl
I dont exactly see from your code the error, but the wiki has a page related to this http://cwiki.apache.org/WICKET/how-to-repaint-a-listview-via-ajax.html if you use ajax, then you need to be sure that there is already a markupID on the output wich is usually not existent in a listview (you could

Re: [Wicket-user] Gricket: The Love-Child of Grails and Wicket

2007-05-19 Thread Korbinian Bachl
emm, actually the Song is "Come out and Play" and was on the 94'SMASH album ;) _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Igor Vaynberg Gesendet: Freitag, 18. Mai 2007 21:12 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Gricket: The Love-Child o

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Korbinian Bachl
element and all of its children, which is not what I want. I need something like one-time-use javascript behavior, which can be attached to a component and then discarded after first rendering. Alex On 4/13/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: We had this question 2 days ago

Re: [Wicket-user] ajax / javascript widgets in wicket

2007-04-13 Thread Korbinian Bachl
We had this question 2 days ago, solution is in wiki: http://cwiki.apache.org/WICKET/how-to-repaint-a-listview-via-ajax.html the List actions itself like add and delete are part of List and you just would have to ListView.setList(yourListInHere) prior to repainting the markupcontainer with ajax

Re: [Wicket-user] Using Wicket to develop WAP sites

2007-04-05 Thread Korbinian Bachl
che Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Martijn Dashorst > Gesendet: Donnerstag, 5. April 2007 16:52 > An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] Using Wicket to develop WAP sites > > On 4/5/07, Korbin

Re: [Wicket-user] Using Wicket to develop WAP sites

2007-04-05 Thread Korbinian Bachl
Hi, as far as i know, there is *no* real mobile-language. Its usually html (various levels depending on device) plus some special css (depending on device, too). And for the html you cant have multi htmls for 1 java file as this would make no sense (html and java cover each other!) - however, you

Re: [Wicket-user] replace of multi inc. spans

2007-04-05 Thread Korbinian Bachl
t; An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] replace of multi inc. spans > > The View and Label can be displayed conditionally - either > listview on label, they don't need to by displayed at the same time. > > On 4/5/07, Korbinian Bachl <[EMAIL PROTECTE

Re: [Wicket-user] replace of multi inc. spans

2007-04-05 Thread Korbinian Bachl
gt; the listView, just ide it and show the label next to lisview. > > On 4/5/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Hi, > > > > maybe its a noobish question, but how can i replace a markup that > > spans other markup wihtout touching the inner one? &g

[Wicket-user] replace of multi inc. spans

2007-04-05 Thread Korbinian Bachl
Hi, maybe its a noobish question, but how can i replace a markup that spans other markup wihtout touching the inner one? e.g: foo foo wich is a simple ListView repeater - that should be replaced by a single Label Component getPage().replace(new Labe

Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Korbinian Bachl
my pdf is from february 07 - > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Marek Pribyl > Gesendet: Dienstag, 3. April 2007 21:13 > An: wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] Pro Wicket bugs > > I reported that

Re: [Wicket-user] Pro Wicket bugs

2007-04-03 Thread Korbinian Bachl
It seems to be a series error (mine final PDF also has this, however the Beta hasn't had it). I reported this to Karthik, the Author - should be solved soon, Regards > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von galbu > Gesendet: Di

Re: [Wicket-user] complex user case

2007-03-31 Thread Korbinian Bachl
looks not very complex - base would be the "Autocomplete Example" http://www.wicket-library.com/wicket-examples/ajax -> Auto Complete... rest is a bit CSS playing + Contentvalidating - only the point with the keystroke would need add. ajax and seems odd to me as i dont know a secure way to cap

Re: [Wicket-user] IBM to adopt Wicket as standard web framework

2007-03-26 Thread Korbinian Bachl
#x27;s a bit suspicious, considering the magic > > date. :) > > > > > > > > On 3/26/07, Francis Amanfo <[EMAIL PROTECTED] > wrote: > > > I'm only a messenger. Don't persecute the messenger! > > > > > > > > > > &g

Re: [Wicket-user] IBM to adopt Wicket as standard web framework

2007-03-26 Thread Korbinian Bachl
"The official announcement of this was planned for April 1, 2007, but because this falls on Sunday, the announcement is scheduled for April, 2 2007." is this some kind of april the 1st joke or are you serious about it??? _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag

Re: [Wicket-user] JCR and Wicket

2007-03-21 Thread Korbinian Bachl
@lists.sourceforge.net Betreff: Re: [Wicket-user] JCR and Wicket you need to add that functionality to that project, right now it doesnt support it. but it is a wicket-stuff project so anyone can join and contribute. -igor On 3/21/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi, has anyone eve

[Wicket-user] JCR and Wicket

2007-03-21 Thread Korbinian Bachl
Hi, has anyone ever used wicket in combination of a JCR like Jackrabbit or sth. like that? - Today I tried out the TinyMCE Contrib from wicket stuff and there is no part in it to give the user a file browser to upload and/ or use files wich seems mission critical for me if you want to give it to

Re: [Wicket-user] Serveur pushing implementation

2007-03-20 Thread Korbinian Bachl
Hi, i find it great that you put it to wicket-stuff! However im sorry that i havent understood what this is good for - can you please give me some usage example? I mean what is the usecase of a bus-simulation? Regards, Korbinian > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [

Re: [Wicket-user] Log messages appearing twice

2007-03-19 Thread Korbinian Bachl
Depending on where you have your log file messages and what kind they are, they can appear more than once as sometimes components are winded up more than once (e.g: inner redirect...) - best answer might be this: http://cwiki.apache.org/WICKET/lifecycle-of-a-wicket-application.html where the whole

Re: [Wicket-user] how to config the wicket 2.0 application toaccessable by domain name directorly?

2007-03-16 Thread Korbinian Bachl
The key here is not wicket - its the webcontainer you use. If you use Tomcat then there is a special ROOT configure directive (or Path - sorry here, but havent had to do with it for long time) wich can be found in the Tomcat-Docs (similar is jetty - just look for "context root" or "context path")

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in2.0

2007-03-07 Thread Korbinian Bachl
Hi, im not yet using 2.0 for a serious project, but spent much time as it should be a future technology here. What me worries is the inconsistence in the way the dev now is handled... I mean, the 2.0 Style Constructor is not bad - it needs rethinking and some time more code, but also makes (IMHO)

Re: [Wicket-user] API break for 1.3 and 2.0: Session constructor

2007-01-14 Thread Korbinian Bachl
Sorry, I dont understand either. We are told not to use "a" but use "a" instead??? I dont get this _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Frank Bille Gesendet: Sonntag, 14. Januar 2007 13:06 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-use

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jarforwicket-contrib-scriptaculous?)

2007-01-11 Thread Korbinian Bachl
no - i dont think so. your aproach would be enough, as the spaces seem to be too big overhead. > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Filippo Diotalevi > Gesendet: Donnerstag, 11. Januar 2007 22:59 > An: wicket-user@lists.sourc

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jarforwicket-contrib-scriptaculous?)

2007-01-11 Thread Korbinian Bachl
cant you force confluence to just extend the basic template? - e.g: only have a manipulatable sub-part in the main-template similar to what you do in CMS like typo3 ? > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Filippo Diotalevi > G

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jarforwicket-contrib-scriptaculous?)

2007-01-11 Thread Korbinian Bachl
+1 for space per project, each space / project should be administered by the creator or the project with the possibility of anyone to add articles to it (e.g: faq, info, how-to etc.) the volunteers for wicket-stuff should have administrator rights for whole wicket stuff area _ Von: [E

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jarforwicket-contrib-scriptaculous?)

2007-01-11 Thread Korbinian Bachl
ijn on this. Plus the sf issue tracker. Confluence should just be for the project web site. jim On 1/11/07, Martijn Dashorst < [EMAIL PROTECTED]> wrote: For downloads I would seriously consider using the sf.net offering. It has enough mirrors to service the whole world. Martijn On 1/11/

Re: [Wicket-user] Wicket-stuff site (Was: Re: Jar forwicket-contrib-scriptaculous?)

2007-01-11 Thread Korbinian Bachl
Good News ! - thanks igor. Is this then completely independent and solely for wicket stuff then? - means, we may setup a new wicket stuff website there, and subpages for the projects and jar file downloads? _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Igor Vaynber

Re: [Wicket-user] hi , is there any example for implements a system menu?

2007-01-11 Thread Korbinian Bachl
http://www.wicket-library.com/wicket-examples/ has the wicket examples - the rest is either a chunk of css and or html markup(-manipulation) suggest you also might want to have a look at http://www.alistapart.com/ for basic CSS/ html knowledge, as a menu is usually nothing more than a ... construc

Re: [Wicket-user] Jar for wicket-contrib-scriptaculous?

2007-01-09 Thread Korbinian Bachl
? we already have a confluence and jira license, so if you guys want i can forward you the info. we also have a server where these things can be hosted :) i can set it up if you guys are interested -igor On 1/9/07, Filippo Diotalevi <[EMAIL PROTECTED]> wrote: On 1/9/07, Korbinian

Re: [Wicket-user] Jar for wicket-contrib-scriptaculous?

2007-01-09 Thread Korbinian Bachl
some way. seriously, i haven't even been able to create an account and login to the wiki for wicket-stuff. On 1/9/07, Filippo Diotalevi <[EMAIL PROTECTED]> wrote: On 1/9/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > the current seems very basic to me, and i never heard about

Re: [Wicket-user] Pagination not working

2007-01-09 Thread Korbinian Bachl
can you post some sourcecode here? > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von snkr subedi > Gesendet: Dienstag, 9. Januar 2007 12:05 > An: wicket-user@lists.sourceforge.net > Betreff: [Wicket-user] Pagination not working > > Hi, > i

Re: [Wicket-user] Jar for wicket-contrib-scriptaculous?

2007-01-09 Thread Korbinian Bachl
> -Ursprüngliche Nachricht- > > Yes... and we really need to setup a new site for > wicket-stuff now it's so outdated that most of the > subprojects of wicket-stuff aren't even documented in the > website. And if we don't have a decent website, it's very > difficult to keep trac

Re: [Wicket-user] Wicket2 and Wicket 1.2.x

2007-01-08 Thread Korbinian Bachl
look it as soon as i can. Als that url encoding stuff is also bothering me. We do it now all over the place and in all kind of places a bit different. Very confusing. johan On 1/7/07, Korbinian Bachl <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: I didnt say its alpha...

Re: [Wicket-user] Can I show a drop down choice list at tabs?

2007-01-08 Thread Korbinian Bachl
I think this would be an overkill - what he wants is just the standard "suckerfish" - no JS needed, pure CSS and simple 's are enough to get it (and barrier free ) look here: http://www.htmldog.com/articles/suckerfish/dropdowns/ there it is explained and shown how to do it right - the only JS

Re: [Wicket-user] Wicket2 and Wicket 1.2.x

2007-01-07 Thread Korbinian Bachl
the "client" wants :( _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Igor Vaynberg Gesendet: Sonntag, 7. Januar 2007 15:46 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] Wicket2 and Wicket 1.2.x On 1/7/07, Korbinian Bachl <[EMAIL PROT

Re: [Wicket-user] Wicket2 and Wicket 1.2.x

2007-01-07 Thread Korbinian Bachl
> That might be a show stopper for you, but not for most > people. The 1.x releases don't have it, and what we currently > have works fine for the simple kind of usage we initially had > in mind. There will always be many improvements possible, but > that doesn't have to stop us from releasing

Re: [Wicket-user] Wicket2 and Wicket 1.2.x

2007-01-07 Thread Korbinian Bachl
stic API changes are done. The last big one > seems to be the onAttach thing that is discussed on the list > right now. > > Eelco > > On 1/6/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > HI, > > > > wicket 2.0 is not beta yet ! - there are many api-chan

Re: [Wicket-user] Wicket2 and Wicket 1.2.x

2007-01-06 Thread Korbinian Bachl
HI, wicket 2.0 is not beta yet ! - there are many api-changes and still will be, as many things are on dev list. Also, even not all JUnit tests are passed in current-trunk. regards > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Ayodej

Re: [Wicket-user] IE 6 requests new session OTT

2007-01-05 Thread Korbinian Bachl
You can configure Tomcat to use URL manipulation only, so he always adds the session to the URLs - however, loosing a session this way is not known and is usually a problem in your application, as the standard behaviour in tomcat is that he rewrites the session on creation to all URLs as wellas pas

Re: [Wicket-user] wicket presentation

2007-01-04 Thread Korbinian Bachl
With that, I think you are complete for the time you have. My 2 cents. Marc On 1/4/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: you could show a component wich holds the suckerfish CSS example (HTML, JS + CSS markup + Java Logic) and then show how easy it is to put this into any exi

Re: [Wicket-user] changing Stylesheet at run-time

2007-01-04 Thread Korbinian Bachl
Its described in the Wiki: http://cwiki.apache.org/WICKET/javascript-and-css-support.html _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Ted Roeloffzen Gesendet: Donnerstag, 4. Januar 2007 16:06 An: w

Re: [Wicket-user] wicket presentation

2007-01-04 Thread Korbinian Bachl
you could show a component wich holds the suckerfish CSS example (HTML, JS + CSS markup + Java Logic) and then show how easy it is to put this into any existing HTML file / template at any position you like... or show how neat a self-calling panel component is to e.g: create a tree structure in m

Re: [Wicket-user] Wicket not compiling

2007-01-03 Thread Korbinian Bachl
You need to call maven with -Dmaven.test.skip=true so he skips the junit tests, as not all are passed currently - please also note that 2.0 has many api changes as well as needs more dependency jars as before (logging changed) regards > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED]

Re: [Wicket-user] Writing byte[] to a WebResponse

2007-01-03 Thread Korbinian Bachl
Isn't it in this case also a "free" download protection inside? - as the URL only is valid for this session so your download cant be "stolen" by anyone else by pointing a URL from his site to a server. unbelievable how much you get with just using wicket for "free" _ Von: [EMAIL PR

Re: [Wicket-user] Naviagtion TreeAjax Component

2007-01-02 Thread Korbinian Bachl
link onclick will then set the response page to the result page. johan On 12/27/06, Matej Knopp <[EMAIL PROTECTED]> wrote: Korbinian Bachl wrote: >>using bookmarkable links for this is crazy, remember that bookmarkable > links the treetable generates also have to encapsula

Re: [Wicket-user] wicket-2.0 snapshots

2006-12-29 Thread Korbinian Bachl
I have never used a maven repository but you may checkout the src from the SVN repo under https://svn.apache.org/repos/asf/incubator/wicket/trunk Regards Korbinian PS: dont forget to include the SL4J jar and the binding jar for your preferred logging as well as the logging jars _

Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff

2006-12-28 Thread Korbinian Bachl
8:14 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff no, there is no difference you do not want stateless or stateful beans to be directly referenced by wicket components, or anything that will end up in httpsession -igor On 12/28/06, Korbinian Bac

Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff

2006-12-28 Thread Korbinian Bachl
Betreff: Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff So both beans (statefull or stateless) are injected on every request? On 12/28/06, Korbinian Bachl <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> > wrote: I believe there you have to differate: a; stateless-

Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff

2006-12-28 Thread Korbinian Bachl
ervlet container needs to serialize something b) worse, the bean is serializable and you drag it along with the wicket components into your session ending up with a useless clone -igor On 12/28/06, Filippo Diotalevi <[EMAIL PROTECTED]> wrote: On 12/28/06, Korbinian Bachl <[EMA

Re: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff

2006-12-28 Thread Korbinian Bachl
Hi Filippo, just browsed through it and its really nice work. Especially if someone wants to have EJB3 persitence but not to use EJB3 Stateless Session Beans to query it. However, the thing with the EjbAnnotation looks not so clear to me - i mean, every IDE has J5EE support and so in Neatbeans fo

Re: [Wicket-user] Naviagtion TreeAjax Component

2006-12-26 Thread Korbinian Bachl
arkable links for this is crazy, remember that bookmarkable links the treetable generates also have to encapsulate state of any other component on the page. -igor On 12/26/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > also why does the word "navigation" keep popping up

Re: [Wicket-user] Naviagtion TreeAjax Component

2006-12-26 Thread Korbinian Bachl
word "navigation" keep popping up in your message, what does this have to do with navigation? -igor On 12/26/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi, after some busy weeks I finally grabbed some time to continue work on my wicket project. Im currently in need to h

[Wicket-user] Naviagtion TreeAjax Component

2006-12-26 Thread Korbinian Bachl
Hi, after some busy weeks I finally grabbed some time to continue work on my wicket project. Im currently in need to have navigation table, "tree table" like, component and so i wonderend if anyone knows if there is already a AjaxFallback version of this available somewhere? (i mean similar to

Re: [Wicket-user] PagingNavigator & (lazy) Session // BUG?

2006-12-13 Thread Korbinian Bachl
ill do that over the weekend, where i might have some time (currently its very busy here) regards _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Johan Compagner Gesendet: Mittwoch, 13. Dezember 2006 16:53 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wick

Re: [Wicket-user] PagingNavigator & (lazy) Session // BUG?

2006-12-13 Thread Korbinian Bachl
d at some point) johan On 12/10/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: yeah - with session attached i mean that from this point on, you get the session assigned to the client (URL has sessionId) BTW: i just tried out the StatelessForm and StatlessLink and found out they th

Re: [Wicket-user] PagingNavigator & (lazy) Session // BUG?

2006-12-09 Thread Korbinian Bachl
using component... or I'm wrong here? Best Regards Korbinian _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Korbinian Bachl Gesendet: Freitag, 8. Dezember 2006 18:13 An: wicket-user@lists.sourceforge.net Betreff: [Wicket-user] PagingNavigator & (lazy) Ses

[Wicket-user] PagingNavigator & (lazy) Session

2006-12-08 Thread Korbinian Bachl
Hi, im currently wondering why the PagingNavigator allways issue a session ? (im on wicket 2.0) I mean if i create a mainpage and link to 2 subpages all is fine and no session used. If i embed a PagingNavigator into any page a session will be created on the moment i access that page, however I

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-11-24 Thread Korbinian Bachl
Remember that these things are from the Extensions Framework, meaning they suite some needs, but not all. The thing they ask the size() first and then the iterator is, that in a big DB the iterator will already pull the data while the size() usually would only do a count over it. So you doing this

Re: [Wicket-user] question about showing components or not

2006-11-24 Thread Korbinian Bachl
Well, if you use a wicket:id in the HTML, then you have to fill it - doing nothing about it is invalid. So here you could either place an empty text e.g: if (product.getPhoto() != null) { add(new Label("product-photo-date", CommonUtil.getFormattedDate(product.getPhoto().getDateTime())

Re: [Wicket-user] Wicket Stuff / Wiki

2006-11-24 Thread Korbinian Bachl
orge.net > Betreff: Re: [Wicket-user] Wicket Stuff / Wiki > > Korbinian Bachl wrote: > > Hi, > > > > some days ago, Eelco and others had the idea to bring the > wicket stuff > > page to a wiki, so updates wold be easier. Hwoever, what > wiki system >

[Wicket-user] Wicket Stuff / Wiki

2006-11-24 Thread Korbinian Bachl
Hi, some days ago, Eelco and others had the idea to bring the wicket stuff page to a wiki, so updates wold be easier. Hwoever, what wiki system should be used? - I personally are quite new to thse and have only got a small experience with JOOMLA and Typo3 (4.0) so far. Anyone who knows some? An

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
well - and im on him with this. i think a wiki is far more suited for our needs than that maven thing (where at least i dont understand most yet :O ) > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Eelco Hillenius > Gesendet: Mittwoch,

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
orge.net > Betreff: Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created > > Which is not a wise thing to do. The site is generated from > the wicket-stuff main project using maven. So your change > will be overwritten the next time it is generated. > > Martijn &g

Re: [Wicket-user] Wicket-Stuff WicketStuffToDo page created

2006-11-22 Thread Korbinian Bachl
I havent been lazy, too. I just fixed the mailing-list page on http://wicket-stuff.sourceforge.net/mail-lists.html - it wasnt there before, i created it from that, what was in the OLD dir - hope this is now ok. Best regards _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auft

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
window and work in the new window. then when im done i close the new window and continue working in the new one. so for me opening a new tab is like keeping a bookmark in the app. -igor On 11/22/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > But if you have a tabbed panel in a

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
ative) and then always redirect to bookmarkable/mounted > URL. You'll get the same behavior tapestry seems to have. > > -Matej > > Korbinian Bachl wrote: > >> Again and again. > >> What would do if you open the start.html page in two > browsers windows?

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-22 Thread Korbinian Bachl
> >Again and again. >What would do if you open the start.html page in two browsers windows? thats the wrong question! - the question would be: what behaviour would the enduser expect when he uses 2 browserwindows/tabs for 1 website? I found out that most enduser just do this, to keep a site as

Re: [Wicket-user] who wants to be in charge ofdoingwicket-stuffreleases

2006-11-21 Thread Korbinian Bachl
s, I'll be > happy to add you guys. > > Eelco > > > On 11/21/06, Korbinian Bachl < <mailto:[EMAIL PROTECTED]> [EMAIL PROTECTED]> wrote: > > > > > > Hi Jim, > > > > sounds good - what time zone you are in? > > > > Regards &

Re: [Wicket-user] Tapestry 5 instantaneous reloads

2006-11-21 Thread Korbinian Bachl
well, you should ask howard lewis-ship about the first one, the 2nd one lies in the way it works - tapestry manages everything while wicket doesnt the downside is more work to make a component compared to wicket, the upside are goodies like easier URLs... and even in tapestry a real-nice URL is

Re: [Wicket-user] who wants to be in charge ofdoing wicket-stuffreleases

2006-11-21 Thread Korbinian Bachl
ne the scope as "provided" I suppose. > > Martijn Dashorst wrote: > > Just a reminder, the wicket-contrib-datepicker project has > a maven 2 > > pom, site and assembly descriptor which can be used as an > example for > > rolling your own releases. > >

Re: [Wicket-user] Posting Data from a Non wicket Form to Wicket

2006-11-17 Thread Korbinian Bachl
if you trap them like that ?param1=value1¶m2=value2 ... you can get them by using PageParameter in your constructor e.g: class foo{ foo(PageParameters param){ String value1 = param.getString("param1"); } } regards _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im A

Re: [Wicket-user] Problem in generation of the html code of the page

2006-11-10 Thread Korbinian Bachl
@lists.sourceforge.netBetreff: Re: [Wicket-user] Problem in generation of the html code of the page add a bug into jira with your quickstart-igor On 11/10/06, Korbinian Bachl <[EMAIL PROTECTED] > wrote: 2.0 ?or1.x ?(sorry, dont know whats in Trunk at the moment you got i

Re: [Wicket-user] Problem in generation of the html code of the page

2006-11-10 Thread Korbinian Bachl
2.0 ? or 1.x ? (sorry, dont know whats in Trunk at the moment you got it) you might want to use wicket 1.2.3 as this hasnt the behaviour so far... > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Alberto Bueno > Gesendet: Freitag, 10. No

Re: [Wicket-user] Problem in generation of the html code of the page

2006-11-10 Thread Korbinian Bachl
What version of Wicket do you use? Regards Korbinian > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Alberto Bueno > Gesendet: Freitag, 10. November 2006 10:35 > An: wicket-user@lists.sourceforge.net > Betreff: [Wicket-user] Problem i

Re: [Wicket-user] Wizard StaticContentStep and CompoundPropertyModel

2006-11-10 Thread Korbinian Bachl
You need to create a Label in the constructor of the given part that passes the information to it. e.g: add(new Label("userModel.userName", userModel.getUserName)); BTW: you can change the Labelname to whatever you want as its not associated with the content behind it. e.g: add(new Label("usernam

Re: [Wicket-user] Prevent Brute Force and the like

2006-11-06 Thread Korbinian Bachl
to:[EMAIL PROTECTED] Im Auftrag > von Korbinian Bachl > Gesendet: Montag, 6. November 2006 16:20 > An: [EMAIL PROTECTED]; wicket-user@lists.sourceforge.net > Betreff: Re: [Wicket-user] Prevent Brute Force and the like > > emm.. yes i meant captcha - look here for a working wicket

Re: [Wicket-user] Prevent Brute Force and the like

2006-11-06 Thread Korbinian Bachl
permanently, just add "one second delays" if some IP was > flooding me > > to render brute force attacks useless and impractical. > > > > Could you please explain "cachapta" / provide a link to an article? > > > > Regards, > > > > Joh

Re: [Wicket-user] Prevent Brute Force and the like

2006-11-06 Thread Korbinian Bachl
Bad idea - some ISPs and proxys would be locked out... cachapta would be solution of choice here. Regards Korbinian > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Johannes Fahrenkrug > Gesendet: Montag, 6. November 2006 14:01 > An:

Re: [Wicket-user] Global, Thread specific Property

2006-11-03 Thread Korbinian Bachl
o set your thread scoped variable, and > onEndRequest to clean it up again. You can access the request > cycle by doing RequestCycle.get(), though you might also > decide to store your variable in some other thread local with > static access. > > Eelco > > > O

Re: [Wicket-user] Global, Thread specific Property

2006-11-03 Thread Korbinian Bachl
equest().getRequestParameters().getParameters()johan On 11/3/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: Hi,i've got a problem and i dont know how to solve it. I work withPageParameters and the thing that i allways have to pull them around makesme sad. Is there a way how i can hav

Re: [Wicket-user] Global, Thread specific Property

2006-11-03 Thread Korbinian Bachl
gt; Hi Korbinian, > > if I understand your Problem correctly then you could use a > custom subclass of WebSession for that purpose. > > roland > > On 11/3/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Hi, > > > > i've got a problem and i do

[Wicket-user] Global, Thread specific Property

2006-11-03 Thread Korbinian Bachl
Hi, i've got a problem and i dont know how to solve it. I work with PageParameters and the thing that i allways have to pull them around makes me sad. Is there a way how i can have a global object holding the current PageParameters that can be accessed without passing in the PageParameters into a

Re: [Wicket-user] Problem of using border

2006-11-01 Thread Korbinian Bachl
Hi, i dont know what you want to "press" - however, if you want to get a list containing users with name, email and a link to edit you need first to iterate over the wicket:id="users" tag using a ListView - example can be found here: http://wicket.sourceforge.net/ExampleGuestBook.html (there the c

Re: [Wicket-user] wicket & tracking/ controlling

2006-10-29 Thread Korbinian Bachl
oint, as many relevant information are available. Though events (submit, etc.) must be logged differently. Juergen On 10/28/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: you cant point me to any article about that ? - i looked at the java-docs for 1.2 branch but didnt u

Re: [Wicket-user] wicket & tracking/ controlling

2006-10-28 Thread Korbinian Bachl
ed, might be a good starting > point, as many relevant information are available. Though > events (submit, etc.) must be logged differently. > > Juergen > > On 10/28/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > you cant point me to any article about that ? -

Re: [Wicket-user] wicket & tracking/ controlling

2006-10-28 Thread Korbinian Bachl
> Have a look at RequestLogger.java > > Juergen > > On 10/28/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Hi, > > > > im not sure how to adress this thing with wicket: if you make a > > website you want to see where your visitor goes, what he

[Wicket-user] wicket & tracking/ controlling

2006-10-28 Thread Korbinian Bachl
Hi, im not sure how to adress this thing with wicket: if you make a website you want to see where your visitor goes, what he does - usually by examining the webservers logfile by looking at the URLs - however this wont work in wicket. How could this be solved ? - how can we track & trace our vi

  1   2   >