Re: Simple CMS or Wiki

2007-09-07 Thread pixotec
a cms always needs a wysiwyg-textarea. there is TinyMCE in wicket-contrib project. if this is to heavy-loaded and difficult to customize for you (as it was for me) then I invite you to work with me on my WysiwygTextarea-component which already is usable for bold, italic, underline, unorderedlist,

Simple CMS or Wiki

2007-09-07 Thread Tauren Mills
I'd like to add some simple CMS and/or wiki features to a wicket application. I don't need anything full featured by any means. I'm looking for pointers to any resources, code, libraries, blogs, or anything else that would help jump start adding these features to my application. I'm aware of the

Kronos-cms installation

2007-09-07 Thread Tauren Mills
I just checked out kronos-cms to take a look at it. I could only find it under the wicket-1.2 branch in wicketstuff. Is that correct, or is there a 1.3 release? During mvn install, I got a build error that it was missing javax.jcr:jcr:jar:1.0.1. It suggested the following: Try downloading th

Re: Rendering a BoxBorder without the black line border

2007-09-07 Thread Cristina
Hi Eelco, I realized that I haven't truly understood the Navomatic example... So I got back to the API JavaDoc. Now I clearly see that the NavomaticBorder in the example is a concrete subclass of Border composed of 2 instances of BoxBorder: the 1st holds the navigation menu while the 2nd holds th

How to force a delete (from disk) of the session from the session store?

2007-09-07 Thread Chris Lintz
Hi, When a user logouts of the site, i want to kill the session and have it be removed from disk immediately. I have extended WebSession properly, but no methods on the WebSession class seem to do the trick for me. Is there a way to to trigger the removal of the session cleanly from disk via the

Re: WebMarkupContainer without template markup

2007-09-07 Thread Carlos Pita
You can also make the components to hide implement some listener (or just marker) interface X and then do a visitChildren traversal from page.onBeforeRender as follows: visitChildren(X.class, new IVisitor() { public Object component(Component component) { comp.setVisible(your visibility logi

AjaxRequestTarget null... in onClick of AjaxFallbackLink

2007-09-07 Thread John Carlson
I have set up a AjaxFallbackLink in a listview. In the populate item I define the fallback link and it's onclick method. The onclick method sets a container to visible. I get the following error output in the console when I click on the link on the actual page... INFO - uestTargetResolve

Re: Two small questions

2007-09-07 Thread Martijn Dashorst
On 9/8/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Nope, add wicket-datetime. Hmm, memory needs reboot at 2:30 am. Martijn -- Buy Wicket in Action: http://manning.com/dashorst Apache Wicket 1.3.0-beta3 is released Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.3.0-beta3/ --

Re: Two small questions

2007-09-07 Thread Eelco Hillenius
On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > On 9/8/07, Sebastiaan van Erk <[EMAIL PROTECTED]> wrote: > > DateLabel component, however I cannot find it in my version of wicket. > > Add wicket-extensions to your project. Nope, add wicket-datetime. Eelco ---

Re: Two small questions

2007-09-07 Thread Martijn Dashorst
On 9/8/07, Sebastiaan van Erk <[EMAIL PROTECTED]> wrote: > DateLabel component, however I cannot find it in my version of wicket. Add wicket-extensions to your project. > Second question that I have is the following. I want to display a label > with a link around it (a href), but the link should

Two small questions

2007-09-07 Thread Sebastiaan van Erk
Hi, I am trying to display a date in my own format in Wicket 1.3.0 beta 3, and the JavaDocs at http://people.apache.org/~tobrien/wicket/apidocs/index.html list a DateLabel component, however I cannot find it in my version of wicket. Is it removed, or is it going to be added to the next versio

AjaxRequestTarget null... in onClick of AjaxFallbackLink

2007-09-07 Thread John Carlson
I have set up a AjaxFallbackLink in a listview. In the populate item I define the fallback link and it's onclick method. The onclick method sets a container to visible. I get the following error output when I click on the link on the actual page... INFO - uestTargetResolverStrategy - com

Re: Newbie - Help in setup of Wicket with Eclipse and Weblogic...

2007-09-07 Thread Gwyn Evans
The same sort of info's also at http://wicket.apache.org/quickstart.html now, too! /Gwyn On Friday, September 7, 2007, 6:23:43 PM, Igor <[EMAIL PROTECTED]> wrote: > see this page > http://cwiki.apache.org/WICKET/documentation-index.html#DocumentationIndex-Codeasdocumentation > under archetype

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Johan Compagner
depends on what is far :) Brussel -> Amersfoort: http://maps.google.com/maps?f=d&hl=en&geocode=&saddr=Amersfoort,+Netherlands&daddr=Brussel,+Belgium&sll=52.512794,6.091538&sspn=0.375674,1.082153&ie=UTF8&z=9&om=1 less then 2 hours On 9/7/07, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > > any

Re: Disable the SecondLevelPageCache?

2007-09-07 Thread Matej Knopp
You can revert to httpsessionstore by changing Application.newSessionStore method. But that's not recommended. What are your performance problems? I doubt it is caused by the session store. -Matej On 9/7/07, jamieballing <[EMAIL PROTECTED]> wrote: > > We are trying to do some performance troubles

Re: Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Chris Lintz
That worked. Thanks so much for your help. I am trying to find verbage on what exactly session.bind() actually does that fixed my problem. Matej Knopp-2 wrote: > > Well, just call session.bind() after set session attribute, and you'll > see if it helps. > > -Matej > > On 9/7/07, Chris Lint

Disable the SecondLevelPageCache?

2007-09-07 Thread jamieballing
We are trying to do some performance troubleshooting and want to disable the second level page cache. Is there any way to do this? Thanks, Jamie -- View this message in context: http://www.nabble.com/Disable-the-SecondLevelPageCache--tf4403977.html#a12563895 Sent from the Wicket - User mailing

Using Include and placing pages under WEB-INF

2007-09-07 Thread Jason Mihalick
Hello, I have followed the instructions on the wiki for placing HTML pages in an alternative location (http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html). The location I chose was at the context root. I.e., webapp/ +--- WEB-INF/ +--- css/ +--- img/ +---

Re: Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Matej Knopp
Well, just call session.bind() after set session attribute, and you'll see if it helps. -Matej On 9/7/07, Chris Lintz <[EMAIL PROTECTED]> wrote: > > Actually i just realized it has something to do with a stateless form. Maybe > you can tell me if this is a bug or not. I am pasting the code below

Re: Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Chris Lintz
Actually i just realized it has something to do with a stateless form. Maybe you can tell me if this is a bug or not. I am pasting the code below, but let me first explain. I basically have a LoginPanel that is included on all non-bookmarkable and bookmarkable pages. My LoginPanel is using a S

Re: WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
Martijn, That certainly accomplishes what I want. Thank you. It was pushing the logic to onBeforeRender() that I was missing. On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > What you want is a bag of components that are separate from the > component hierarchy, afaiui? > > Why not keep

Re: WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
Matej, My issue isn't that the div is rendered, but rather that I have to add it to the html file in the first place. I think that I could implement this as a Behavior, but for this problem I just went ahead and added div tags around the relevant components. Thanks again, Scott On 9/7/07, Matej

Re: WebMarkupContainer without template markup

2007-09-07 Thread Martijn Dashorst
What you want is a bag of components that are separate from the component hierarchy, afaiui? Why not keep a list of components that need to be made invisible, and add them to that list. call setvisible(false) on that list of components in onbeforerender. Remove them from that list when you want th

Re: Calling all translators - UrlValidator translation

2007-09-07 Thread dtoffe
There is a small typo in: EmailAddressValidator='${input}' no es una direcion de correo electronico valida. Should be "direccion" instead of "direcion". There are also some missing accents, I'll post the correct Unicode chars when I figure out how. Daniel -- View this message in cont

Re: Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Martijn Dashorst
Can't this be a problem of not binding the session? i.e. he's not touched the session so is still in stateless mode? Martijn On 9/7/07, Matej Knopp <[EMAIL PROTECTED]> wrote: > We can't help you with this if you don't post any code. The session > object should of course be available for bookmarka

Re: WebMarkupContainer without template markup

2007-09-07 Thread Matej Knopp
Can't you just call webmarkupcontainer.setRenderBodyOnly(true) ? -Matej On 9/7/07, Scott Swank <[EMAIL PROTECTED]> wrote: > I get what you're saying, but the images in question are scattered > across the page rather than in one place that could simply be > enclosed. Thank you none the less, I do

Re: Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Matej Knopp
We can't help you with this if you don't post any code. The session object should of course be available for bookmarkable and non-bookmarkable objects. -Matej On 9/7/07, Chris Lintz <[EMAIL PROTECTED]> wrote: > > Hi all, > This seems like a bug to me but I am hoping some one can lead me the right

Re: Calling all translators - UrlValidator translation

2007-09-07 Thread dtoffe
OK found it browsing 1.3 beta. The string you want for: The English in question is: '${input}' is not a valid URL. is '${input}' no es una URL válida. Daniel dtoffe wrote: > > As of v. 1.2.6, I see there is no spanish .properties translation > file, if it's not already done in 1.3

Re: WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
I get what you're saying, but the images in question are scattered across the page rather than in one place that could simply be enclosed. Thank you none the less, I do appreciate the insight. Cheers, Scott On 9/7/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > well, thats kinda the point of the

CompressedResourceReference: can't get resource-url of static html in package

2007-09-07 Thread pixotec
I think this will be an easy problem for you all... I want to create a new component for wicket-extensions: it is a already working wysiwyg-textarea. I packaged it like this: wicket.extensions.markup.html.form.wysiwyg - WysiwygTextarea.java - WysiwygTextarea.html wicket.extensions.markup.html.fo

Bookmarkable page and session object problem? (1.3 beta3)

2007-09-07 Thread Chris Lintz
Hi all, This seems like a bug to me but I am hoping some one can lead me the right way to a solution. I basically have non-bookmarkable page that puts the a User object in the session. After this, if i click on a bookmarkable page link, that page does not have the user in the session. If I go b

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread thijs
+1 looking forward to it!! Thijs Johan Compagner wrote: hi, I can organize one if there is enough interest Martijn and i will be there then. And for example if people are also interested in the wicket security i will also drag Maurice to the table. johan --

Re: Calling all translators - UrlValidator translation

2007-09-07 Thread dtoffe
As of v. 1.2.6, I see there is no spanish .properties translation file, if it's not already done in 1.3 I can contribute it. Daniel Alastair Maw-2 wrote: > > Hi folks, > > I've just added a UrlValidator into trunk (WICKET-832, thanks Vincent > Demay!). > > We're unfortunately lacking tr

Re: WebMarkupContainer without template markup

2007-09-07 Thread Igor Vaynberg
well, thats kinda the point of the enclosure... it lets you group components together inside it, and let one of those components drive the visibility of the entire enclosure -igor On 9/7/07, Scott Swank <[EMAIL PROTECTED]> wrote: > > I could, but it's kind of the opposite of what I want. I wan

Re: WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
I could, but it's kind of the opposite of what I want. I want to _not_ have to add an enclosing tag to the relevant portions of the html template. So I don't mind coding a WebMarkupContainer -- I just want to avoid having to change: to The basic problem is that sometimes we have a set o

Re: WebMarkupContainer without template markup

2007-09-07 Thread Igor Vaynberg
you can prob port enclosure to 1.2.6 yourself if you wanted it badly -igor On 9/7/07, Scott Swank <[EMAIL PROTECTED]> wrote: > > Pity we're not on 1.3 yet. Thank you though. > > Scott > > On 9/7/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > no, but you can try wicket:enclosure tag. see javad

Re: WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
Pity we're not on 1.3 yet. Thank you though. Scott On 9/7/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > no, but you can try wicket:enclosure tag. see javadoc on Enclosure.java > > -igor > > > > On 9/7/07, Scott Swank <[EMAIL PROTECTED]> wrote: > > > > I want to make a few parts of my page visib

Re: WebMarkupContainer without template markup

2007-09-07 Thread Igor Vaynberg
no, but you can try wicket:enclosure tag. see javadoc on Enclosure.java -igor On 9/7/07, Scott Swank <[EMAIL PROTECTED]> wrote: > > I want to make a few parts of my page visible or not in a consistent > manner -- i.e. based on the same true/false result, which I derive > from my model. Can I w

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Thies Edeling
ah, finally a reason to attend one of this jspring/jfall/javapolis things. Francis De Brabandere wrote: Would be great On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I'll be presenting on JavaPolis this december, so we can easily plan a BoF in the evening. Martijn On 9/7/07, Franc

Re: PageLink and markup inheritance problem

2007-09-07 Thread Igor Vaynberg
can you build a quickstart that reproduces it? -igor On 9/7/07, Carlos Pita <[EMAIL PROTECTED]> wrote: > > I'm getting the exception below when following a PageLink, but not > with a BookmarkablePageLink. This wasn't happening with previous 1.3 > snapshots (I updated my wicket copy this morning)

Re: Problem with DropDownChoice and AjaxFormComponentUpdatingBehavior

2007-09-07 Thread JulianS
Thank you Carlos! This was exactly what I needed to do. Julian Carlos Pita-4 wrote: > > protected void onUpdate(AjaxRequestTarget target) { > dropDown2.clearInput(); <--- reset input !!! > dropDown2.setModelObject(null); > target.add

WebMarkupContainer without template markup

2007-09-07 Thread Scott Swank
I want to make a few parts of my page visible or not in a consistent manner -- i.e. based on the same true/false result, which I derive from my model. Can I wrap the relevant components in WebMarkupContainer without adding a matching tag to my markup? Thank you, Scott -- Scott Swank reformed m

Re: Disable loading image from browser cache

2007-09-07 Thread fero
Thanks Igor. It is working! Fero igor.vaynberg wrote: > > extend NonCachingImage instead > > -igor > > > On 9/7/07, fero <[EMAIL PROTECTED]> wrote: >> >> >> Hi, >> I have a Panel with some images (charts generated with jfreechart) and a >> datatable. This Panel is in AjaxTabbedPanel and ev

Re: Disable loading image from browser cache

2007-09-07 Thread Igor Vaynberg
extend NonCachingImage instead -igor On 9/7/07, fero <[EMAIL PROTECTED]> wrote: > > > Hi, > I have a Panel with some images (charts generated with jfreechart) and a > datatable. This Panel is in AjaxTabbedPanel and every time it is accessed > data table is evaluated and charts renewed. But only

Disable loading image from browser cache

2007-09-07 Thread fero
Hi, I have a Panel with some images (charts generated with jfreechart) and a datatable. This Panel is in AjaxTabbedPanel and every time it is accessed data table is evaluated and charts renewed. But only table is updated and charts stay the same (they are loaded from cache), they are reloaded only

Re: Re: Wicket maven archetype

2007-09-07 Thread Robo
Works, Thanks - Originálna Správa - Od: Gwyn Evans Komu: Poslaná: 07.09.2007 11:00 Predmet: Re: Wicket maven archetype > On Friday, September 7, 2007, 9:38:53 AM, Al wrote: > > > Gwyn Evans wrote: > >> It\'s a bug in the Maven Surefire plugin V2.3 that shows up if there\'s > >> a

Wicket Stuff Dojo Repository

2007-09-07 Thread Aaron Hiniker
Where did it move to? Aaron - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Newbie - Help in setup of Wicket with Eclipse and Weblogic...

2007-09-07 Thread Igor Vaynberg
see this page http://cwiki.apache.org/WICKET/documentation-index.html#DocumentationIndex-Codeasdocumentation under archetype use the archetype to create a new app then cd into that app "mvn eclipse:eclipse" will create an eclipse project which you can then import into eclipse "mvn war" will c

Newbie - Help in setup of Wicket with Eclipse and Weblogic...

2007-09-07 Thread schu777
Hi Everyone, I'm very "new" to setting up a web app - I've only done bug fixes and a few enhancements to web apps that were already configured. So I'm trying to learn Wicket to see how easy it would be to replace an application at work that has over 500 data fields with business rules around nea

Re: Calling all translators - UrlValidator translation

2007-09-07 Thread Gerolf Seitz
hi al, here are all missing german translations: StringValidator.exact='${input}' ist nicht exakt ${exact} Zeichen lang. CreditCardValidator=Die Kreditkartennummer ist ung\u00fcltig. UrlValidator='${input}' ist keine g\u00fcltige URL. i guess you could use that for the swiss translation too. ge

Re: Copenhagen wicket users meeting?

2007-09-07 Thread Jan Mikkelsen
Hi Nino Well, I am from Denmark and I think the initiative is great. Even if I am from Skanderborg, I would definitely like to meet up with you guys some time. So keep me posted please. Best regards, Jan Nino Saturnino Martinez Vazquez Wael wrote: Some time has past since our last meeting. P

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Matej Knopp
Well, i guess with component path encoded in url, the milliseconds could do ;) -Matej On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Yes, but all those images will have a different url, or are they the > same? The milliseconds parameter is only used to distinguish between > requests, no

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Martijn Dashorst
Yes, but all those images will have a different url, or are they the same? The milliseconds parameter is only used to distinguish between requests, not within one. Martijn On 9/7/07, Matej Knopp <[EMAIL PROTECTED]> wrote: > Really? What's so odd about it? Say you have a page with 100 images. > Ho

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Matej Knopp
Really? What's so odd about it? Say you have a page with 100 images. How long do you think such page renders? It shouldn't take long than say 5 ms on a decent machine. -Matej On 9/7/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > 2 tags generating the same milisecond for the same client/session?

Calling all translators - UrlValidator translation

2007-09-07 Thread Alastair Maw
Hi folks, I've just added a UrlValidator into trunk (WICKET-832, thanks Vincent Demay!). We're unfortunately lacking translations for the default error message in most languages. If you can help out for any of our supported languages, please shout. Feel free to e-mail me them directly, or re

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Francis De Brabandere
Would be great On 9/7/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > I'll be presenting on JavaPolis this december, so we can easily plan a > BoF in the evening. > > Martijn > > On 9/7/07, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > > any chance you could do this a bit more near belgium?

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Martijn Dashorst
I'll be presenting on JavaPolis this december, so we can easily plan a BoF in the evening. Martijn On 9/7/07, Francis De Brabandere <[EMAIL PROTECTED]> wrote: > any chance you could do this a bit more near belgium? :-) > > On 9/7/07, "C. Bergström" <[EMAIL PROTECTED]> wrote: > > Johan Compagner w

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Francis De Brabandere
any chance you could do this a bit more near belgium? :-) On 9/7/07, "C. Bergström" <[EMAIL PROTECTED]> wrote: > Johan Compagner wrote: > > hi, > > > > I can organize one if there is enough interest > > Martijn and i will be there then. > > > > And for example if people are also interested in the

Re: DataTable header that spans multiple columns

2007-09-07 Thread Igor Vaynberg
if its _just_ the header, then simply create your own headerstoolbar -igor On 9/7/07, ChuckDeal <[EMAIL PROTECTED]> wrote: > > > The *content* of the datatable is tabular, it is just the heading that I > was > trying to render in a more elaborate layout. > > Would you still offer the same advice

Re: DataTable header that spans multiple columns

2007-09-07 Thread ChuckDeal
The *content* of the datatable is tabular, it is just the heading that I was trying to render in a more elaborate layout. Would you still offer the same advice even if it is just the header? Chuck igor.vaynberg wrote: > > datatable is really made for tabular data. if you have spans, etc, then

Re: DatePicker format?

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

Re: DatePicker format?

2007-09-07 Thread Andrew Klochkov
Hi, you should set the same date format for the text field. For example, you can use DateTextField from the wicket-extensions project: DateTextField dateField = new DateTextField("from", "d-M-"); Onno Scheffers wrote: Hi, how can I get the wicket.extensions.markup.html.datepicker.DateFo

Re: AjaxSubmitLink does nothing in IE

2007-09-07 Thread Igor Vaynberg
On 9/7/07, Anthony J Webster <[EMAIL PROTECTED]> wrote: > > That works fine. Thanks > However I've just noticed that this AjaxSubmitLink doesn't do anything in > IE > whereas in Firefox it works. > I check the Ajax debug window and the server *is* contacted and everything > however after recieving

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread C. Bergström
Johan Compagner wrote: > hi, > > I can organize one if there is enough interest > Martijn and i will be there then. > > And for example if people are also interested in the wicket security i will > also drag Maurice to the table. I can attend while I'm in the Netherlands and will probably drag (wil

PageLink and markup inheritance problem

2007-09-07 Thread Carlos Pita
I'm getting the exception below when following a PageLink, but not with a BookmarkablePageLink. This wasn't happening with previous 1.3 snapshots (I updated my wicket copy this morning). The PageLink is created by the (id,class) constructor this way: new PageLink(id, ChangePasswordPage.class) Cha

Re: DataTable header that spans multiple columns

2007-09-07 Thread Igor Vaynberg
datatable is really made for tabular data. if you have spans, etc, then i suggest you go with a dataview -igor On 9/7/07, ChuckDeal <[EMAIL PROTECTED]> wrote: > > > When using the DataTable with HeadersToolbar you can display the Label > associated with the column as the column Header. Has anyo

Re: Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Martijn Dashorst
On 9/7/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > I can organize one if there is enough interest > Martijn and i will be there then. > > And for example if people are also interested in the wicket security i will > also drag Maurice to the table. +1 And we can play the videos from London as

Any interest in a Wicket User Group meeting in The Netherlands?

2007-09-07 Thread Johan Compagner
hi, I can organize one if there is enough interest Martijn and i will be there then. And for example if people are also interested in the wicket security i will also drag Maurice to the table. johan

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Johan Compagner
2 tags generating the same milisecond for the same client/session? that looks very very very odd to me. johan On 9/7/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: > > Actually we discussed that. > > I suggested it but as Matej wrote: > don't think so. you can have two tags

Re: AjaxSubmitLink does nothing in IE

2007-09-07 Thread Matej Knopp
Could be related to markup, or parsing the response. Jira issue and quickstart would help here. -Matej On 9/7/07, Anthony J Webster <[EMAIL PROTECTED]> wrote: > That works fine. Thanks > However I've just noticed that this AjaxSubmitLink doesn't do anything in IE > whereas in Firefox it works. >

Re: How to set wicket's locale?

2007-09-07 Thread Gabor Szokoli
I'm planing to have a little celebration in our office when our webapp is officially released to customers. I was thinking about ordering pizza to be delivered to the wicket developers who have helped us so much here on the list, so they can share our joy, not just our problems. How hard can it be

Re: threading issues - continued

2007-09-07 Thread Sam Hough
I must be slowing down or Sun is speeding up. Huge amounts of stuff in 1.5 that I've not played with. From 1.1 to 1.2 it didn't seem that much to keep up with!? Not sure we have really slow tasks (like classic booking ticket) but we are using Alfresco for some calls and that can be slow... Thread

DatePicker format?

2007-09-07 Thread Onno Scheffers
Hi, how can I get the wicket.extensions.markup.html.datepicker.DateFormat (Wicket 1.2.6) to use a custom DateFormat? I keep getting validation problems as soon as I try to switch to another DateFormat. HTML: wicket:id="datePicker" /> Java: TextField dateField = new TextField("date", Da

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
This was how it was supposed to have written like: Actually we discussed that. I suggested it but as Matej wrote: "don't think so. you can have two tags generated in same millisecond." As for nano might be better, lesser chance for tags being generated in the same nanosec. But whats wrong

Re: threading issues - continued

2007-09-07 Thread Martijn Dashorst
On 9/7/07, Sam Hough <[EMAIL PROTECTED]> wrote: > Create a thread from within a servlet container...? Tut tut ;) Yeah, not the most elegant way since they are not monitored by the container, but it sure does get the work done. And we have really nice users that would never try to flood our server.

DataTable header that spans multiple columns

2007-09-07 Thread ChuckDeal
When using the DataTable with HeadersToolbar you can display the Label associated with the column as the column Header. Has anyone had a case where they wanted a label to span columns? Specifically, something where row one is a category that spans three columns and then row two contains individu

Re: threading issues - continued

2007-09-07 Thread Sam Hough
Create a thread from within a servlet container...? Tut tut ;) I don't think we have any messaging or timing framework at the mo so may come to that. Martijn Dashorst wrote: > > On 9/7/07, Sam Hough <[EMAIL PROTECTED]> wrote: >> OK. Should give me fewer nightmares even if it doesn't explain c

AjaxSubmitLink does nothing in IE

2007-09-07 Thread Anthony J Webster
That works fine. Thanks However I've just noticed that this AjaxSubmitLink doesn't do anything in IE whereas in Firefox it works. I check the Ajax debug window and the server *is* contacted and everything however after recieving the response I get an "ERROR: Error while parsing response: Unknow

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
Actually we discussed that. I suggested it but as Matej wrote: don't think so. you can have two tags generated in same millisecond.. As for nano might be better, lesser chance for tags being generated in the same nanosec. But whats wrong with autoindex? Martijn Dashorst wrote: Why not use S

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Martijn Dashorst
Why not use System.currentTimeMillis()? Or if you are really concerned use nanotime. Martijn On 9/7/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: > so no, talking to Matej on ##wicket, the fix was this: > > Resolutions are these two : > protected void onComponentTag(

Re: applicationwide datePattern

2007-09-07 Thread Dipu Seminlal
Hi Korbinian, my mistake, sorry. Regards Dipu On 9/6/07, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > > Hi Dipu, > > well, the problem is that i have here the Locale("de","DE") which has > default pattern "dd.MM.yy" while I need "dd.MM." - so how can this > be changed? (so MEDIUM instead of

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
so no, talking to Matej on ##wicket, the fix was this: Resolutions are these two : protected void onComponentTag(ComponentTag tag) { super.onComponentTag(tag); tag.put("src", tag.getString("src") + "&rand=" + Math.random()); } or event better since random co

Re: threading issues - continued

2007-09-07 Thread Martijn Dashorst
On 9/7/07, Sam Hough <[EMAIL PROTECTED]> wrote: > OK. Should give me fewer nightmares even if it doesn't explain current > problem. > > Many thanks. It is probably just my dodgy code. > > What pattern do you use for long running Ajax requests? Create a worker thread in the background. If it really

Re: threading issues - continued

2007-09-07 Thread Alex Objelean
In our application, for long running ajax request we block the screen, so the user is unable to click somewhere else. Alex. Sam Hough wrote: > > OK. Should give me fewer nightmares even if it doesn't explain current > problem. > > Many thanks. It is probably just my dodgy code. > > What patte

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Martijn Dashorst
The most failsafe solution to the update image using Ajax request to my mind is to add a random number to the url for the image (I thought we already did that?). Martijn On 9/7/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: > Hi > > How do I add keywords no-cache and etc, for

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
this is whats generated: http://localhost:8080/thirdparty-webapp/thirdParty/?wicket:interface=:4:form:phoneA:phoneThumb:image::IResourceListener:: regards Nino Martijn Dashorst wrote: The most failsafe solution to the update image using Ajax request to my mind is to add a random number to the

Re: threading issues - continued

2007-09-07 Thread Sam Hough
OK. Should give me fewer nightmares even if it doesn't explain current problem. Many thanks. It is probably just my dodgy code. What pattern do you use for long running Ajax requests? Matej Knopp-2 wrote: > > There is no way that ajax requests can be processed without blocking. > a) ajax re

Re: {wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Ernesto Reinaldo Barreiro
Why not use NonCachingImage? regards Ernesto Nino Saturnino Martinez Vazquez Wael wrote: Hi How do I add keywords no-cache and etc, for a panel? Reason are that the panel carries a image and that gets cached so when my ajax call comes in and updates the model then the old image are shown..

Re: threading issues - continued

2007-09-07 Thread Matej Knopp
There is no way that ajax requests can be processed without blocking. a) ajax requests are ordered on client into queues b) requests are blocked on target page (not session) on server side -Matej On 9/7/07, Sam Hough <[EMAIL PROTECTED]> wrote: > > A bit of the application lets you add items to a

{wicket 1.3 beta 3} Howto add keywords No cache etc?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
Hi How do I add keywords no-cache and etc, for a panel? Reason are that the panel carries a image and that gets cached so when my ajax call comes in and updates the model then the old image are shown.. regards Nino - To uns

Re: threading issues - continued

2007-09-07 Thread Sam Hough
A bit of the application lets you add items to a list using AjaxFallbackButton. All works fine if you click the buttons slowly but if I click quickly I get exceptions that look like my code is running concurrently (nullpointer where it can't happen if running in a single thread). What behaviour i

Re: Upcoming jWeekend Wicket training courses

2007-09-07 Thread Anthony J Webster
I'd be arriving from Paris but I know my way around London having been born there! Something tells me the boss isn't going to pick up the check though (he's got struts suck in his head) grrr :( - Original Message - From: "jweekend" <[EMAIL PROTECTED]> To: Sent: Friday, September 07,

Re: Upcoming jWeekend Wicket training courses

2007-09-07 Thread jweekend
(there's a link below if you'd like to see a presentation Al gave at one of our London Wicket User Groups and at the last Java Web users Group) That's interesting Anthony; our first 2 Wicket-course students also found us from continental Europe, in fact, both from Belgium (is this where the next w

Re: threading issues - continued

2007-09-07 Thread Matej Knopp
Can you be more specific? What kind of concurrency issues? -Matej On 9/7/07, Sam Hough <[EMAIL PROTECTED]> wrote: > > oops, I posted on old forum... > > http://www.nabble.com/threading-question-tf841003.html > > [all request serialised on Session object] > > Is this true even for Ajax requests? I

threading issues - continued

2007-09-07 Thread Sam Hough
oops, I posted on old forum... http://www.nabble.com/threading-question-tf841003.html [all request serialised on Session object] Is this true even for Ajax requests? Is whole life cycle effectively single threaded for a single session? I think I'm seeing a concurrency issue in my website (Wick

Re: Upcoming jWeekend Wicket training courses

2007-09-07 Thread Anthony J Webster
Oh I agree. I'll definitely try and go if I'm up to it. - Original Message - From: "Nino Saturnino Martinez Vazquez Wael" <[EMAIL PROTECTED]> To: Sent: Friday, September 07, 2007 11:58 AM Subject: Re: Upcoming jWeekend Wicket training courses ahh but going to the weeekend might make

Copenhagen wicket users meeting?

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
Some time has past since our last meeting. Perhaps it's time for a new one? We could focus this meeting on using basic wicket. In order to have more newcommers? Whats your opinion on this people? What would make you come to the meeting, and how many are we from denmark? regards Nino -

Re: Upcoming jWeekend Wicket training courses

2007-09-07 Thread Nino Saturnino Martinez Vazquez Wael
ahh but going to the weeekend might make it easier for you to get the load of work off your shoulders:) I've been hearing the phrase "we haven't got time to education, because we are too busy" too much, that itself are oxymoron. That could easily be translate into : we havent got time to make

Re: Upcoming jWeekend Wicket training courses

2007-09-07 Thread Anthony J Webster
Hmm nice. I'd hop on a Eurostar if I weren't submerged with work and totally exhausted! A - Original Message - From: "Al Maw" <[EMAIL PROTECTED]> To: Sent: Friday, September 07, 2007 11:02 AM Subject: Upcoming jWeekend Wicket training courses Hi folks, Cemal and I have been workin

Upcoming jWeekend Wicket training courses

2007-09-07 Thread Al Maw
Hi folks, Cemal and I have been working hard refining jWeekend's upcoming "Getting Started With Apache Wicket 1.3" [1] and "Apache Wicket 1.3" [2] courses. The next ones are scheduled for September 22nd and September 29th-30th respectively. They're an excellent way to get up to speed with Wi

  1   2   >