Montable PDF creating page

2009-04-09 Thread Stefan Lindner
I need some trick to turn the response into a PDF stream. E. g. I have a Bookmarkable Page PdfPAge public class PdfPage extends WebPage { public PdfPage (final PageParameters parameters) { // Respond with PDF content. }

AW: Validating DropDownChoice

2009-04-07 Thread Stefan Lindner
Is it a "normal" form without AjaxSubmitButton? -Ursprüngliche Nachricht- Von: Chris [mailto:ch...@carlsoncentral.com] Gesendet: Dienstag, 7. April 2009 16:53 An: users@wicket.apache.org Betreff: Validating DropDownChoice I have a DropDownChoice defined as follows. // Model for populati

RE: Pop up window after file upload

2009-04-05 Thread Stefan Lindner
Yes, I think this can't be done your way. You need an AjaxRequestTarget to open a ModalWindow. But I remember that it is not possible to upload a file with an AjaxSubmitButton. The only way I can imagine to realize such a behavior is to call setResponsePage after upload is done and do the trick

AW: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Stefan Lindner
[X] -1, don't accept above resolution, because ... We should start a vote with a little bit more names. Why not SilverWicket oder WicketLight? Or SilverWicket FX.NET for best of both worlds? -Ursprüngliche Nachricht- Von: martijn.dasho...@gmail.com [mailto:martijn.dasho...@gmail.com] Im

RE: FormComponentPanel woes

2009-03-26 Thread Stefan Lindner
ts of markup inside itself. That markup you have quoted is being generated by Wicket - not by me :( Stefan Lindner wrote: > > > > > Should do it > Linda, I don't have that book unfortunately. The javadocs do mention those two methods, but it seems targeted at compoun

RE: FormComponentPanel woes

2009-03-26 Thread Stefan Lindner
Should do it -Ursprüngliche Nachricht- Von: triswork [mailto:tristan.k...@gmail.com] Gesendet: Donnerstag, 26. März 2009 13:14 An: users@wicket.apache.org Betreff: Re: FormComponentPanel woes Hi Linda, No, I haven't :( I didn't realise I had to... Do you know where I can find some

RE: best way to add tooltips in wicket

2009-03-26 Thread Stefan Lindner
Did you already have a look at http://www.walterzorn.com/tooltip/tooltip_e.htm ? -Ursprüngliche Nachricht- Von: RoyBatty [mailto:math...@afjochnick.net] Gesendet: Donnerstag, 26. März 2009 09:21 An: users@wicket.apache.org Betreff: Re: best way to add tooltips in wicket OK, OK, i get it

RE: drag and drop

2009-03-19 Thread Stefan Lindner
It is still there. I had massive problems with updating dropable items in a table with ajax. -Ursprüngliche Nachricht- Von: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Gesendet: Donnerstag, 19. März 2009 21:31 An: users@wicket.apache.org Betreff: Re: drag and drop I would use

RE: Simple Ajax Form

2009-03-04 Thread Stefan Lindner
Hava a look at http://www.wicketstuff.org/wicket13/ajax/form.1 , then download the wicket sample application and examine the source code. -Ursprüngliche Nachricht- Von: newbieabc [mailto:newbie...@yahoo.com] Gesendet: Mittwoch, 4. März 2009 20:55 An: users@wicket.apache.org Betreff: Simp

Wicket pages as plugin

2009-03-03 Thread Stefan Lindner
Dear wicket users and wizzards! Is ist possible to use wicket to implement "partial" pages that can be embedded into another page? E.g. to have a normal content management system like Joomla and use wicket top lug it into exisiting pages for some dynamic, database driven content? The HTML that is

RE: Why is BookmarkablePageLink generified?

2009-03-02 Thread Stefan Lindner
Yes Willis, that's what we do. So we prefer to have a generic BuukmarkablePageLink. -Ursprüngliche Nachricht- Von: Willis Blackburn [mailto:wbo...@panix.com] Gesendet: Montag, 2. März 2009 13:43 An: users@wicket.apache.org Betreff: Re: Why is BookmarkablePageLink generified? Bookmarkabl

RE: URL Mapping (Beginner)

2009-02-09 Thread Stefan Lindner
You need to do 2 things. 1. Mount your Page in Applicatioin.init() methode like mountBookmarkablePage("/Login", Login.class); As you see, you can give your page any name you want 2. Your e.g. Login.class must have a parameterless constructor or a constructor like public Login(fin

RE: java.lang.ClassCastException in ListMultipleChoice

2009-02-05 Thread Stefan Lindner
And a little bit of example's code too. -Ursprüngliche Nachricht- Von: tomlist0...@gmail.com [mailto:tomlist0...@gmail.com] Im Auftrag von Thomas Mäder Gesendet: Donnerstag, 5. Februar 2009 23:38 An: users@wicket.apache.org Betreff: Re: java.lang.ClassCastException in ListMultipleChoice

AW: Problem with Wicket Ajax with IE7 64bits

2009-02-03 Thread Stefan Lindner
Hi Antoine, we use Vista64 for development and IE 7 64 for testing. We have pages with some dozen components (buttons, labels, optionfields) that are updated simulaniously but we never had a problem with IE7 like you described. But I must say we use Wicker 1.4 current runk, not 1.3.x. Stefan

RE: new bee jqery or dojo

2009-02-02 Thread Stefan Lindner
In my experience jquery is more rubust and the interference with other javascript frameworks is no problem. Scriptacolous for example modifys the javascript basic behavior and tends to cause problems for other frameworks. -Ursprüngliche Nachricht- Von: miro [mailto:miroconn...@yahoo.com]

AW: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
HTML by hand... Then what would be the point in using Wicket? And in this particular case I personally would prefer to use panels... Best, Ernesto On Mon, Feb 2, 2009 at 12:18 PM, Stefan Lindner wrote: > Of course! And: why not use wicket's Loop for generating each and > nested Loop f

AW: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
ld be much more clear and consistent with wicket way of doing things... Best Ernesto On Mon, Feb 2, 2009 at 11:47 AM, Stefan Lindner wrote: > Yes, you just have to tell the e.g. Label component not to escapte the > model's content (label.setExcapteModelStrings(false)) Then the model&

RE: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
ow to personalise HTML content with Wicket ? Thks. Can I also use Model to define HTML section containing regular HTML with wicket id ? Additional question : in this case, where content is define dynamically, which java class will trigger the wicket tags ? Stefan Lindner wrote: >

RE: How to personalise HTML content with Wicket ?

2009-02-02 Thread Stefan Lindner
Several Ways to to this. The easiest way for your example HTML: In Java Model contentModel = new Modelmailto:cmoulli...@gmail.com] Gesendet: Montag, 2. Februar 2009 11:10 An: users@wicket.apache.org Betreff: How to personalise HTML content with Wicket ? Hi, I would like to know how we can p

[OT] German wicket programmers wanted

2009-01-29 Thread Stefan Lindner
We are looking for Wicket programmers with native German language for a project in Health Care. If anybody on this list knows about persons with free development capacity please mail to Stefan Lindner lind...@visionet.de

RE: ModalWindow with DatePicker

2009-01-14 Thread Stefan Lindner
What's the problem? Which wicket version? We use the date picker in Wicket 1.4 trunk inside modal windows and it works fine. Stefan -Ursprüngliche Nachricht- Von: wilson meier [mailto:wilson.me...@googlemail.com] Gesendet: Mittwoch, 14. Januar 2009 16:47 An: users@wicket.apache.org Betr

RE: Applying Styles Through Java

2008-12-23 Thread Stefan Lindner
It depends :-) You may control the attributes of an element (e.g. attribute "class") with Component.add(new simpleAttributeModifier("class", " someComponentClass"); Stefan -Ursprüngliche Nachricht- Von: walnutmon [mailto:justin.m.boy...@gmail.com] Gesendet: Dienstag, 23. Dezem

RE: [OT] wicket users around the world

2008-12-15 Thread Stefan Lindner
Erlangen, Germany We are using Wicket Since version 1.0 for all new web projects. Stefan -Ursprüngliche Nachricht- Von: Jeremy Levy [mailto:jel...@gmail.com] Gesendet: Montag, 15. Dezember 2008 23:51 An: users@wicket.apache.org Betreff: Re: [OT] wicket users around the world New York,

IOptionRenderer vs IChioceRenderer in Wicket 1.4M1

2008-12-12 Thread Stefan Lindner
The definition of IOptionRenderer is Interface IOptionRenderer java.lang.String getDisplayValue(java.lang.Object object) the definition of IChoiceRenderer is Interface IChoiceRenderer java.lang.Object getDisplayValue(T object) Why is the param

AW: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
instead of anonymous make it a private static inner class -igor On Tue, Nov 25, 2008 at 9:48 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Arghhh! Ok, so the Page object itself holds a reference to the parent class. > But is there any way to suppress the serialization of this p

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
@wicket.apache.org Betreff: Re: ModalWindow and page serialization in 1.4RC1 On Tue, Nov 25, 2008 at 6:37 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > No, it does not contain any references to the outer page. I had a similar > case last week, so that this was the first ascpect to investig

RE: ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
reff: Re: ModalWindow and page serialization in 1.4RC1 Does your page inside modal window contain reference to outer page? -Matej On Tue, Nov 25, 2008 at 1:43 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I have a ModalWindow with a page inside it (constructed via > modalWindow.s

ModalWindow and page serialization in 1.4RC1

2008-11-25 Thread Stefan Lindner
I have a ModalWindow with a page inside it (constructed via modalWindow.setPageCreator). The page contains a lot of AjaxButtons etc. If the content page is constructed as a stateless page (new MyPage() without parameters) the page (content of modal window) gets Serialized on every klick onto any A

RE: Stability of Wicket 1.4RC1 methods/interfaces: new development on 1.3.5 or 1.4RC1?

2008-11-23 Thread Stefan Lindner
I just can tell you our experience as wicket users. We recently moved a production system from wicket 2.0 (was an alpha version or so) to 1.4RC1. This system is now in production again. It runs as stable as the old one. We developed two applications with 1.4RC1 (going through M1 to M3) which are

AW: Simple GET based stateless form

2008-11-17 Thread Stefan Lindner
In the onSubmit method of your form place something like PageParameters p = new PageParameters(); // add your search parameters here getRequestCycle().setRequestTarget(new RedirectRequestTarget(urlFor(MySearchResults.class, p).toString())); Try out http://www.ai-online.i

RE: Unable to load Wicket app in hosting provider

2008-11-16 Thread Stefan Lindner
n configure? Thanks. -los Stefan Lindner wrote: > > I guess that ' servlet version 2.4". But Tomcat 5.0 supports only version 2.3? Mybe this > could help you. Or you just drop the 'version ="..."' attribute. > > Stefan > > -Ursprüngliche

RE: Unable to load Wicket app in hosting provider

2008-11-16 Thread Stefan Lindner
I guess that 'mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 16. November 2008 16:36 An: users@wicket.apache.org Betreff: Unable to load Wicket app in hosting provider Hi, I'm running into an issue where my Wicket-based application will absolutely not load in the shared hosting environment. I'm t

RE: button without aform

2008-11-14 Thread Stefan Lindner
Use a link and make it look like a button with css. Or use a . -Ursprüngliche Nachricht- Von: miro [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 14. November 2008 16:27 An: users@wicket.apache.org Betreff: button without aform Can I have buttons without a form ? I want to send user to a

RE: OFF TOPIC - all-in-one wysiwyg website package?

2008-11-13 Thread Stefan Lindner
Take a look at Joomla 1.5 (www.joomla.org). If you have a linux box with Apache/php/MySql the Joomla installation is just to unzip the distribution and run a litte menu driven install program. Administration is easy, plugins for nearly every purpose are available. 3 designs are part of the base

RE: ModalWindow and Component.writeObject

2008-11-12 Thread Stefan Lindner
those are also serialized. On 11/12/08, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I have a ModalWindow with a page as content, not a panel. Wn Ajax button on > this modal window starts another modal window inside the first modal window > (Page as content not a panel). This seco

ModalWindow and Component.writeObject

2008-11-12 Thread Stefan Lindner
I have a ModalWindow with a page as content, not a panel. Wn Ajax button on this modal window starts another modal window inside the first modal window (Page as content not a panel). This second modal window holds a Button. The Button has an AjaxEventBehavior Button mybutton = new butto

AW: form being posted many times

2008-11-10 Thread Stefan Lindner
Why don't you use a LazyLoadPanel? May this be an option? -Ursprüngliche Nachricht- Von: eyalbenamram [mailto:[EMAIL PROTECTED] Gesendet: Montag, 10. November 2008 12:17 An: users@wicket.apache.org Betreff: form being posted many times Hi I have a login page (with a form) that redirects

RE: how to replace 2.0's reAttach

2008-11-07 Thread Stefan Lindner
Thanks Igor! -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 7. November 2008 22:14 An: users@wicket.apache.org Betreff: Re: how to replace 2.0's reAttach yes -igor On Fri, Nov 7, 2008 at 1:10 PM, Stefan Lindner <[EMAIL PROTECTED

how to replace 2.0's reAttach

2008-11-07 Thread Stefan Lindner
What is the perfect way to replace the reattach method of wicket 2.0 in Wicket 1.4? Is it correct to replace the 2.0 expressioin myComponent.reAttach() with addOrReplace(myComponent); Stefan - To unsubscribe, e

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
up and it will be generified. -igor On Wed, Nov 5, 2008 at 2:52 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I checked out trunk from http://svn.apache.org/repos/asf/wicket/trunk and > IndicatingAjaxFallbackLink is still not generic. Am I using the wrong trunk >

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
@wicket.apache.org Betreff: Re: WIcket 1.4 IndicatingAjaxFallbackLink it is generic in trunk. -igor On Wed, Nov 5, 2008 at 12:55 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink > >public

RE: WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
Great! Thank you! -Ursprüngliche Nachricht- Von: Igor Vaynberg [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 5. November 2008 17:18 An: users@wicket.apache.org Betreff: Re: WIcket 1.4 IndicatingAjaxFallbackLink it is generic in trunk. -igor On Wed, Nov 5, 2008 at 12:55 AM, Stefan

WIcket 1.4 IndicatingAjaxFallbackLink

2008-11-05 Thread Stefan Lindner
IndicatingAjaxFallbackLink is not generic. It extends AjaxFallbackLink public abstract class IndicatingAjaxFallbackLink extends AjaxFallbackLink which is generic public abstract class AjaxFallbackLink extends Link implements IAjaxLink I think IndicatingAjaxFallbackLink should be

RE: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-11-04 Thread Stefan Lindner
rs Betreff: Re: AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop Wichtigkeit: Hoch Hi Stefan, Op vrijdag 25-04-2008 om 18:03 uur [tijdzone +0200], schreef Stefan Lindner: > To all the other WicketStuff Dojo users: I have successfully built a > version for current wicket 1.4 trunk. If someone

RE: Migration to 1.4 - generic headache

2008-10-28 Thread Stefan Lindner
8. Oktober 2008 12:40 An: users@wicket.apache.org Betreff: RE: Migration to 1.4 - generic headache Hi Stefan! Stefan Lindner wrote: > > Use a Void Link (Link) or create your own Link wrapper class > > Class MyLink extends Link > I know I can create a wrapper but it

RE: Migration to 1.4 - generic headache

2008-10-28 Thread Stefan Lindner
Use a Void Link (Link) or create your own Link wrapper class Class MyLink extends Link Stefan -Ursprüngliche Nachricht- Von: Artur W. [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 28. Oktober 2008 12:23 An: users@wicket.apache.org Betreff: Migration to 1.4 - generic headache H

RE: Two /(Upload)Forms and 2 feedbacks on one page

2008-10-14 Thread Stefan Lindner
Use a FeedbackPanel(final String id, IFeedbackMessageFilter filter) constructor with a message filter. Stefan -Ursprüngliche Nachricht- Von: Herbert Winter [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 14. Oktober 2008 11:04 An: users@wicket.apache.org Betreff: Two /(Upload)Forms and 2

FileUpload and Ajax

2008-10-13 Thread Stefan Lindner
I searched the mailing list for posts about uploading a file with an AjaxButton. The general meaning ist hat this is not possible in wicket. On post statet that there might be a solution in wicketstuff (where). Did anybody solve this problem? Stefan

AW: How to answer Request with 500 error

2008-10-07 Thread Stefan Lindner
ponse); } Alternatively, you can throw an AbortWithWebErrorCodeException and provide it with the appropriate error code and an optional message. Stefan Lindner wrote: > I try to create a watchdog page for our site. My idea was to check the > neccessary resources and respond with a 500 error in case

How to answer Request with 500 error

2008-10-07 Thread Stefan Lindner
I try to create a watchdog page for our site. My idea was to check the neccessary resources and respond with a 500 error in case of failure. So I placed getWebRequestCycle().getWebResponse().getHttpServletResponse().setStatus (HttpServletResponse.SC_INTERNAL_SERVER_ERROR); in the page co

Session ID and Sesson destroy

2008-10-05 Thread Stefan Lindner
I need to perform some actions on sesson destroy or after session is destroyed. In Application I can override ths sessionDestroyed method. This method hast he session id as it's parameter. So it should be possible to address a certain Sesson. But how can I obtain the session's id on creation? When

RE: Contribute to the tag (onload)

2008-10-04 Thread Stefan Lindner
Have a look at http://www.nabble.com/body-onload-contribution-to13097473.html#a13097473 -Ursprüngliche Nachricht- Von: Edgar Merino [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 3. Oktober 2008 13:53 An: users@wicket.apache.org Betreff: Contribute to the tag (onload) Hello, Is it p

RE: Form submit to bookmarkable page

2008-10-02 Thread Stefan Lindner
().setRequestTarget(new RedirectRequestTarget(myurl)); } -igor On Thu, Oct 2, 2008 at 2:12 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > OK. But how to > > " and in onsubmit construct the url and redirect to it." > > The only methods for redirects I know are the redir

RE: Form submit to bookmarkable page

2008-10-02 Thread Stefan Lindner
The solution, if anybody else should encounter this problem ist to put the following into the onSubmitMethod PageParameters p = new PageParameters(); p.add("myParameterName", ); getResponse().redirect(urlFor(MyTargetPage.class, p).toString()); getRequestCycle().setR

RE: Form submit to bookmarkable page

2008-10-02 Thread Stefan Lindner
t 12:27 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Wow! Seems to be a good starting point. I'm using wicket for 2 years now but > still got a lot to learn. Sigh! > Now I have a form with a simple submit button. In the Form's onComponentTag I > have > >

RE: Form submit to bookmarkable page

2008-10-02 Thread Stefan Lindner
t.apache.org Betreff: Re: Form submit to bookmarkable page you can override form's oncomponenttag() and call super then tag.put(action, urlfor(yourpage.class)); i believe that should work -igor On Thu, Oct 2, 2008 at 8:41 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Is it possible to

Form submit to bookmarkable page

2008-10-02 Thread Stefan Lindner
Is it possible to submit a form to a bookmarkable page (with form input as page parameters)? What I want is a form with a submit button/link that leads to a page with e.g. URl http://mysite.com/myapp/targetPage/param1/value1/param2/value2 Of course I mount the submit link#s target page class

AW: wicket 1.4 release

2008-10-02 Thread Stefan Lindner
think i will make some time this weekend to look over jira issues and also merge back a lot of changes i already did in 1.3.5 igor did also a lot of stuff already so for me within 1 or 2 weeks we could do both releases johan On Thu, Oct 2, 2008 at 8:15 AM, Stefan Lindner <[EMAIL PROTECTED]>

RE: wicket 1.4 release

2008-10-01 Thread Stefan Lindner
It's clear that it's not possible to estimate the release of 1.4 final. But can anybody tell us whether a new snapshot (1.4M4) is in sight? Stefan -Ursprüngliche Nachricht- Von: Timo Rantalaiho [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 2. Oktober 2008 05:37 An: users@wicket.apache

How to get rid of wicket:id in XML output

2008-10-01 Thread Stefan Lindner
I'm trying to build a dynamic site map according to Michael Sparers article http://cwiki.apache.org/WICKET/seo-search-engine-optimization.html Instead of an HTML page a XML page is used with XML markup looking like http://www.sitemaps.org/schemas/sitemap/0.9";>

RE: New wicket blog by Wicket committers

2008-09-30 Thread Stefan Lindner
... what is the problem? Martijn On Tue, Sep 30, 2008 at 2:51 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > On the page "buy the book" (http://wicketinaction.com/buy/) is a wrong url > for "Manning.com-Ebook and print". The wrong url is > "http://manning.c

RE: New wicket blog by Wicket committers

2008-09-30 Thread Stefan Lindner
On the page "buy the book" (http://wicketinaction.com/buy/) is a wrong url for "Manning.com-Ebook and print". The wrong url is "http://manning.com/dashorst"; the correcturl is "http://www.manning.com/dashorst"; Stefan -Ursprüngliche Nachricht- Von: Martijn Dashorst [mailto:[EMAIL PROTEC

RE: Individual session timeout

2008-09-26 Thread Stefan Lindner
x/servlet/http/HttpSession.html > > You can get that from the wicket session... Or request cycle... I > cant remember.. > > Stefan Lindner wrote: >> I forgut to tell you that I use Wicket 1.4 M3. I can't see any >> settimeout-Method in Session. >> >> Stefan >

RE: Individual session timeout

2008-09-26 Thread Stefan Lindner
f: Re: Individual session timeout session.settimeout() ? Stefan Lindner wrote: > The global session timeout for all sessions can be set in the web.xml > file. Is it possible to set an individual session timeout for each > session? E.g. depending on the user'

Individual session timeout

2008-09-26 Thread Stefan Lindner
The global session timeout for all sessions can be set in the web.xml file. Is it possible to set an individual session timeout for each session? E.g. depending on the user's role? Stefan - To unsubscribe, e-mail: [EMAIL PROTECTE

AW: How to abort Application initialization

2008-09-21 Thread Stefan Lindner
just terminate that webapp, dont know if it will call destroy... On 9/21/08, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Whichis the correct way to terminate the Itialisation of an application? > When a fatal error occurs in my Application's init() method the > initialisatio

How to abort Application initialization

2008-09-21 Thread Stefan Lindner
Whichis the correct way to terminate the Itialisation of an application? When a fatal error occurs in my Application's init() method the initialisation oft he Application should be stopped. Currently I call unset(); internalDestroy(); But internalDestroy() shoul

1.4M4?

2008-09-19 Thread Stefan Lindner
Wicket in Action is out, the open issues for 1.4 are constantly decreasing. Is a 1.4M4 in sight? Stefan

RE: after

2008-09-17 Thread Stefan Lindner
ence as we set the proper http headers. Pragmas are just alternative thing to do so. -Matej On Wed, Sep 17, 2008 at 10:28 PM, Stefan Lindner <[EMAIL PROTECTED]>wrote: > A microsoft tech tip (http://support.microsoft.com/kb/222064) for IE

after

2008-09-17 Thread Stefan Lindner
A microsoft tech tip (http://support.microsoft.com/kb/222064) for IE suggests to put a tag after the closing tag. But wicket (1.4M3) deletes the and the served page is Any way to solve this? Stefan -

AW: "Attempt to set model object on null model of component" when submitting a form

2008-09-16 Thread Stefan Lindner
Your DropDownChoice element has no Model so the submit code does not know where to store your selection. Add a new Model() to it's constructor. -Ursprüngliche Nachricht- Von: Azzeddine Daddah [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 16. September 2008 15:01 An: users@wicket.a

RE: How to made a direct response html in wicket

2008-09-11 Thread Stefan Lindner
You can always have and java class MyPage extens WebPage { public MyPage() { add(new Label("content", "a lot of html tags and things fort he page").setEscapeModelStrings(false)); } -Ursprüngliche Nachri

RE: [OT] Wicket in Action Woes

2008-08-31 Thread Stefan Lindner
Amazon says that it ist to be published on Sept. 28. It's the seond time that the publishing date moved towards the end oft he year. Stefan -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von James Carman Gesendet: Montag, 1. September 2008 00:24 An:

RE: Wicket,tomcat and UTF-8

2008-08-29 Thread Stefan Lindner
I had the same problem some week ago but got no answer on this list. Now I use getMarkupSettings().setDefaultMarkupEncoding("ISO-8859-1"); getRequestCycleSettings().setResponseRequestEncoding("ISO-8859-1"); in the Application.init() method of wicket 1.4M3. Wicket seems to

RE: encoding riddle ISO-8859-1

2008-07-24 Thread Stefan Lindner
ncoding in Applicaiton.init via setResponseRequestEncoding? Stefan -Ursprüngliche Nachricht- Von: Stefan Lindner [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 24. Juli 2008 13:38 An: users@wicket.apache.org Betreff: encoding riddle ISO-8859-1 I Use wicket 1.3M3.I want to use the ISO-8859-1 encod

encoding riddle ISO-8859-1

2008-07-24 Thread Stefan Lindner
I Use wicket 1.3M3.I want to use the ISO-8859-1 encoding for my pages so I - Have all Java files and all HTML files use ISO-8859-1 encoding. - All HTML files start with and have - Application.init calls getMarkupSettings().

Wicket 1.4M3 migration

2008-07-18 Thread Stefan Lindner
We moved to wicket 1.4M3 (current trunk) with success. It was not so hard because we already have wrappers for most of wickets core components (e.g. GenericPanel etc.). We still love the way generics were in M2 but we can live with M3. But it definitely makes sense that ConverterLocator is no longe

RE: How can i use a Image as Link?

2008-07-10 Thread Stefan Lindner
Use css a.myCssClass:hover to modify mouse cursor on over. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: TabbedPanel and css problem

2008-07-10 Thread Stefan Lindner
How does your RAW html file look like? The one you write by yourself? Something like ? -Ursprüngliche Nachricht- Von: Pierre Gilquin [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 10. Juli 2008 08:27 An: users@wicket.apache.org Betreff: TabbedPanel and css problem Hi all,

RE: Register Session end

2008-07-08 Thread Stefan Lindner
> Holding a JDBC connection in session is hardly a good idea. Anyway, take a look at HttpSessionListener. Which is the preferred pattern for this case? Where should I store a JDBC Session object? Stefan Lindner - To unsubscr

Register Session end

2008-07-08 Thread Stefan Lindner
ssion in finalize because the classes are already invalidated. The invalidate method of session is not called on Session end. I'm using wicket 1.4M2. Stefan Lindner - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

RE: generics

2008-06-27 Thread Stefan Lindner
I still prefer the M2 way of generics but if this can become the common sense about Generics for the 1.4 release apply this change. The sooner the better. Stefan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

RE: DropDownChoice and Raw Input values (of e.g., textfields)

2008-06-21 Thread Stefan Lindner
Maybe the AjaxFormValidatingBehavior is what you need. -Ursprüngliche Nachricht- Von: Martin Makundi [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 21. Juni 2008 10:56 An: users@wicket.apache.org Betreff: DropDownChoice and Raw Input values (of e.g., textfields) Hi! Is there a simple way

JavaScript for tag

2008-06-09 Thread Stefan Lindner
I want to use a JavaScript library that requires the body to be loaded. This can normally be done by writing .. What is the correct way to do this in wicket 1.4? Stefan - To unsubscribe, e-

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-09 Thread Stefan Lindner
> Strong typing is my friend. Refactoring is my friend. The stronger and > clearer we make typing throughout Wicket the happier I'll be. > > Code is written once and maintained a hundred thousand times. I'd > always trade verbosity for maintainability. Yes! Good summary! Stefan ---

RE: users, please give us your opinion: what is your take on generics with Wicket

2008-06-05 Thread Stefan Lindner
Johan Compagner wrote >next week i dont have much rest.. I am on vacation! >Bern, Switzerland! You are visiting an EM match? That's not a rest? :-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

AW: users, please give us your opinion: what is your take on generics with Wicket

2008-06-04 Thread Stefan Lindner
[EMAIL PROTECTED] wrote >The way 1.3 works currently has been fine with me and any type mismatch in programming error usually result in crash with obvious location of >error and easily fixed. This may be an option for small projects or for personal use. But for big projects for software sold all

RE: users, please give us your opinion: what is your take on generics with Wicket

2008-06-04 Thread Stefan Lindner
Igor Vaynberg wrote >i am wondering how many of the "keep as is in trunk" votes came from people who only imagined what their code would look like and havent >actually hit the numerous pain points those of us who did code gainst it hit. I'm one of the "keep as is in trunk" users and I use 1.4 tru

AW: users, please give us your opinion: what is your take on generics with Wicket

2008-06-02 Thread Stefan Lindner
Brill Pappin wrote >I don't know, I think the discussion is going *toward* generics. >Frankly I can't even see why its an issue at all, the language has evolved and uses them... Why would Wicket not also use them its inline with >the current state of the language? > >There is no reason that people

Re: users, please give us your opinion: what is your take on generics with Wicket

2008-06-02 Thread Stefan Lindner
1) Generifying* Wicket [x] Can best be done like currently in the 1.4 branch, where models and components are both generified. I care most about the improved static type checking generified models and components give Wicket. 2) How strongly do you feel about your choice above? [x] I definit

Re: Ajax and Loop

2008-05-08 Thread Stefan Lindner
Thank you! The ListView did the trick! -Ursprüngliche Nachricht- Von: Eelco Hillenius [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 8. Mai 2008 00:35 An: users@wicket.apache.org; [EMAIL PROTECTED] Betreff: Re: Ajax and Loop > Have you tried using a ListView in combination with a model

Re: Ajax and Loop

2008-05-07 Thread Stefan Lindner
(rather than passing a List to the constructor of ListView)? Jeremy Thomerson http://www.wickettraining.com On Wed, May 7, 2008 at 4:55 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Dear wicket wizzards, > > I have a Loop on my page (creates Components from a List ot Objects).

Ajax and Loop

2008-05-07 Thread Stefan Lindner
Dear wicket wizzards, I have a Loop on my page (creates Components from a List ot Objects). Now I have an AjaxFallbackLink on my page. This link adds an Object to my List and as a reaction to this action I want my Loop to be repainted (showing the new object). What must I do? A simple "target.addC

Re: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-29 Thread Stefan Lindner
Now it works but I had to specify the javacript libraries explicit in the header section. The auto generated header contribution of libraries did not work. I hat a similar problem with WicketStuff Dojo. Stefan -Ursprüngliche Nachricht- Von: Stefan Lindner [mailto:[EMAIL PROTECTED

Re: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-29 Thread Stefan Lindner
culous > > As for when it will be available for wicket 1.4?, i have no idea since > i have nothing to do with that project. > Perhaps Ryan Sonnek can answer that. > > Maurice > > On Mon, Apr 28, 2008 at 2:13 PM, Stefan Lindner <[EMAIL PROTECTED]> > wrote: > >

Re: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-28 Thread Stefan Lindner
e > > http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wic > ket-contrib-scriptaculous > > As for when it will be available for wicket 1.4?, i have no idea since > i have nothing to do with that project. > Perhaps Ryan Sonnek can answer that. > > Maurice >

Re: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-28 Thread Stefan Lindner
:49 PM, Ryan Sonnek <[EMAIL PROTECTED]> wrote: > the wicketstuff-scriptaculous project has drag/drop support. I > haven't updated it to reflect 1.4 changes yet. > > are 1.4 snapshots available for wicket yet on the bamboo snapshot > repository? > > > > O

RE: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-25 Thread Stefan Lindner
PROTECTED] Gesendet: Freitag, 25. April 2008 19:24 An: users@wicket.apache.org Betreff: Re: AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop Stefan Lindner wrote: > Thank you Ryan, > > nice to hear that some WicketStuff projects are still alive. On question > about Scriptaculous drag

AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-25 Thread Stefan Lindner
drop container (means drop an element onto another to replace it)? To all the other WicketStuff Dojo users: I have successfully built a version for current wicket 1.4 trunk. If someone nedds it, please let me know! Stefan Lindner -Ursprüngliche Nachricht- Von: Ryan Sonnek [mailto:[EMAIL

AW: Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-25 Thread Stefan Lindner
now. you might need to lay your own hands on it. i would guess nobody objects to such efforts. Gerolf On Thu, Apr 24, 2008 at 6:53 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Is there a Wicketstuff/dojo version that works together with Wicket 1.4? > Is Wicketstuff/Dojo stil

<    1   2   3   4   >