Building javadoc for Wicket 1.4 from svn download

2008-04-24 Thread Stefan Lindner
The current Wicket 1.4 trunk does not create javadocs anymore (as described on this list and on the build webpage). How can I create the javadoc files with maven? I don't know maven mechanisms for this task. When I build the project with maven javadoc:javadoc, the javadocs are generated in the tar

AW: Building javadoc for Wicket 1.4 from svn download

2008-04-24 Thread Stefan Lindner
Thank you! -Ursprüngliche Nachricht- Von: Martijn Dashorst [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 24. April 2008 14:28 An: users@wicket.apache.org Betreff: Re: Building javadoc for Wicket 1.4 from svn download iirc: mvn -Prelease install Martijn On 4/24/08, Stefan Lindner

Wicket 1.4 and Wicketstuff/Dojo/DragAndDrop

2008-04-24 Thread Stefan Lindner
Is there a Wicketstuff/dojo version that works together with Wicket 1.4? Is Wicketstuff/Dojo still alive? The latest news on the webpage state that Wicketstuff/Dojo is still based upon wicket 1.3 beta. Stefan - To unsubscribe, e-

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

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

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

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

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

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

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

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

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

RE: Modal window problem in IE 6 (6.0.2900.2180.xpsp_sp2_gdr.070227-2254)

2007-12-14 Thread Stefan Lindner
We had a similar problem with another framework: the dropdown menus did not work in som case. As if the javascript library (not the css as in your case, but I think it contains js too)was not loaded. The cause was a firewall misconfiguration at the customer's side and in another case it was a pe

RE: Format date column in DefaultDataTable

2007-12-17 Thread Stefan Lindner
I use two solutions for this (depends on the situatioin) 1. Define your own Date class (e.g. class MyDate extends Date), write a Converter for MyDate, add a method getMyDate to your data class and write columns.add( new PropertyColumn( new Model( "Call Received" ), "callReceived", "

RE: tree with modalwindow interaction

2007-12-18 Thread Stefan Lindner
I am one of the old Wicket 2.0 users and I use the following code modalWindow.setWindowClosedCallback(new ModalWindow.WindowClosedCallback() { private static final long serialVersionUID = 1L; public void onClose(AjaxRequestTarget target) {

AW: AjaxCheckBox not receiving onUpdate Event

2007-12-19 Thread Stefan Lindner
Override a methode calles something like "wantChangeNotificatoin" and meke it return true Stefan -Ursprüngliche Nachricht- Von: Advanced Technology® [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 19. Dezember 2007 08:32 An: users@wicket.apache.org Betreff: AjaxCheckBox not receiving onU

AW: TabbedPanel making AJAX?

2008-01-04 Thread Stefan Lindner
Wen Tong, I think the following code does what you want: new AjaxTabbedPanel(..) { private static final long serialVersionUID = 1L; @Override protected void onAjaxUpdate(AjaxRequestTarget target) { Sys

Wicket 1.4/2.0/nextStep

2008-01-14 Thread Stefan Lindner
Where can I find the subversion branch for wicket's next release? At http://svn.apache.org/repos/asf/wicket/trunk/jdk-1.5/ I can't find the wicket base package. Stefan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

RE: Wicket 1.4/2.0/nextStep

2008-01-14 Thread Stefan Lindner
> We haven't started it. > > We wait with starting new development until 1.3.1 or even 1.3.2 is > released. We don't want to maintain two branches and first want to > make the issue list for 1.3 a lot smaller before branching. > > Martijn This means, that we old wicket 2.0 users who are waiting

RE: Wicket 1.4/2.0/nextStep

2008-01-14 Thread Stefan Lindner
Dear Martijn, I understand your point of view and I did not want to blame wicket. We use wicket because we love wicket. Unfortunately we started using Wicket 2.0 early in 2007. The main reason for doing this was the ability to use the generic components of wicket 2.0 (version 2007). Once we have s

AW: Trigger ajax-form submit when changing tabs

2008-01-17 Thread Stefan Lindner
Once ago in Wicket 2.0 there was a static method VAjaxFormValidatingFeedback.addToFormComponent(this, , ClientEvent.CHANGE); I remember that there was a method to do this for all fiels in a form but I dont' remember exectly. But VAjaxFormValidatingFeedback wild be a good

RE: Get from input from a ModalWindow

2008-01-22 Thread Stefan Lindner
Hi Thomas, you have a form inside your ModalWindow. There is no difference between a form in a ModalWindow and a form in a normal Window. You have to associate your form with a model or each component of your form has it's own model. How do you submit the form? With a form button? Or do you simp

RE: Ajax Busy Indicator

2008-01-29 Thread Stefan Lindner
You can use CSS to control the positon of the busy indicating image. To place it right from the button use span.wicket-ajax-indicator img { margin:0; padding:0; padding-left: 2px; display: inline; white-space:

Wicketstuff/dojo Examples

2008-03-13 Thread Stefan Lindner
Where can I find the source for the wicketstuff/dojo examples? I do not mean the code snipplets like the ones at http://wicketstuff.org/confluence/display/STUFFWIKI/Simple+Dojo+D%27n%27 D+tutorial? The repositories that are mentiones all around the page contain only source for the wicket-doje-inte

RE: Wicketstuff/dojo Examples

2008-03-13 Thread Stefan Lindner
-dojo-examples Maurice On Thu, Mar 13, 2008 at 5:16 PM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Where can I find the source for the wicketstuff/dojo examples? I do > not mean the code snipplets like the ones at > > http://wicketstuff.org/confluence/display/STUFFWIKI/Simpl

Re: Wicket ModalWindow vs Other

2008-03-17 Thread Stefan Lindner
We make heave use of the ModalWindow provided by the extensions project. It works very well. -Ursprüngliche Nachricht- Von: mnwicket [mailto:[EMAIL PROTECTED] Gesendet: Montag, 17. März 2008 20:36 An: users@wicket.apache.org Betreff: Wicket ModalWindow vs Other Just out of curiosity, a

Wicket dojo DragAndDrop problem

2008-03-18 Thread Stefan Lindner
I try to use Wicket 1.3.2 together with wicketstuff dojo (both 1.3.0 beta and 1.3.0 latest) Everything works fine if I deploy my applicatioin in development mode. Some lines like DEBUG: Initialized drop contianer for dropContainer01, dropIds: *, DEBUG: Callback url base: ?wicke

Building Wickststuff Doje fails

2008-03-18 Thread Stefan Lindner
When I build wicketstuff dojo from current svn checkout, the resulting jar file is corrupt. It's the MANIFEST.MV file that causes the problem. The MANIFEST.MF file from the current distributioin is Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache M

RE: Wicket dojo DragAndDrop problem

2008-03-23 Thread Stefan Lindner
ar 18, 2008 at 2:32 AM, Stefan Lindner <[EMAIL PROTECTED]> wrote: > I try to use Wicket 1.3.2 together with wicketstuff dojo (both 1.3.0 > beta and 1.3.0 latest) Everything works fine if I deploy my > applicatioin in development mode. Some lines like > > DEBUG: Init

DatePicker style in old Wicket 2.0

2007-09-08 Thread Stefan Lindner
Der wicket wizzards, how can I modify the look (e.g. the font-size) of the DatePicker popup js-component? I try to override the css class (.calendar) in my own css but this has no effect. Html-code like MyOwnCalendarStyle.css like .calendar {

AW: Locating CSS under WEB-INF, please help

2007-09-09 Thread Stefan Lindner
Why don't you just put the following code into the -part of your BasePage? Wicket does not touch thie header if it's the in your BasePage. If you place some panels at your page and the panels should use their own css files you can make wicket add the panel's

RE: DatePicker style in old Wicket 2.0

2007-09-09 Thread Stefan Lindner
oaded after the datepicker sheet? Martijn On 9/9/07, Stefan Lindner <[EMAIL PROTECTED]> wrote: > Der wicket wizzards, > > how can I modify the look (e.g. the font-size) of the DatePicker popup > js-component? I try to override the css class (.calendar) in my own > css but this ha

AW: DatePicker style in old Wicket 2.0

2007-09-09 Thread Stefan Lindner
Problem is solved with a workaround. Thank you all. -Ursprüngliche Nachricht- Von: Stefan Lindner [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 9. September 2007 12:26 An: users@wicket.apache.org Betreff: RE: DatePicker style in old Wicket 2.0 I hope my css is loaded after the

RE: AW: Locating CSS under WEB-INF, please help

2007-09-09 Thread Stefan Lindner
css and js resources just fine when I point a browser directly at BasePage.html. Is that what you meant by "yourpath/your.css"? Here is my raw markup from BasePage.html: Page Title For some reason, the Wicket runtime is changing the above href from "css/sty

AW: Update page asynchronus through the server

2007-10-19 Thread Stefan Lindner
)? Stefan Lindner -Ursprüngliche Nachricht- Von: Jan Kriesten [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 19. Oktober 2007 09:40 An: users@wicket.apache.org Betreff: Re: Update page asynchronus through the server hi stefan, > Does Wicket provide any mechanism or can anyboldy helb me w

AW: Update page asynchronus through the server

2007-10-19 Thread Stefan Lindner
And where can I find the org.wicketstuff.dojo.AbstractRequireDojoBehavior class that is referenced by wicketstupp-push? It's not in the www.wicketstuff.org's contrib-dojo. Stefan Lindner -Ursprüngliche Nachricht- Von: Jan Kriesten [mailto:[EMAIL PROTECTED] Gesendet: F

Update page asynchronus through the server

2007-10-19 Thread Stefan Lindner
and tell the client to reload it's table? Of course, I can use a Ajax self updating Timer behavior that polls the server but that ist not what I dream of. Any hints? I remember a mailing som moths ago concerning this case but I did not find a sufficent search prhase for nabble. Stefan Li

AW: ModalWindow question

2007-11-01 Thread Stefan Lindner
ads you to the solution for your problem Stefan Lindner -Ursprüngliche Nachricht- Von: Doug Leeper [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 1. November 2007 15:55 An: users@wicket.apache.org Betreff: ModalWindow question I would like to use a ModalWindow to prompt for a choice of

[EMAIL PROTECTED]

2007-11-06 Thread Stefan Lindner
Hallo Herr Schäfer, ganz unverbindlich angefragt: Raum Nürnberg, würde das Ihrem Verständnis von "southern Germany" entsprechen? Mit freundlichen Grüßen Stefan Lindner -Ursprüngliche Nachricht- Von: Uwe Schäfer [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 6. November 200

AW: ModalWindow: open on page construction

2007-11-17 Thread Stefan Lindner
This would be a great benefit for mee too. I have the same problem and I currently use a self updateing Timer to trigger an AjaxRequestTarget to open the modal window. Stefan -Ursprüngliche Nachricht- Von: Matej Knopp [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 17. November 2007 19:48

RE: Wish list for 1.4

2007-12-12 Thread Stefan Lindner
Yes, plase remember the 2.0 users that are waiting for 1.4 = 1.3+Generics short after 1.3 release. I remember the aim was to have two releases (1.31 and 1.4) with the same same Code base only differing in Generics. Stefan >-Frank Bille- >Didn't we say 1.4 = 1.3+generic only? You know

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

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

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

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

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().

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

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

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

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 -

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

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

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

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

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

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'

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

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

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

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

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

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
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
().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: 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

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

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

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

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

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

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

AW: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread Stefan Lindner
Hi Sebastien, I started Wildfly8 development with wicket a few weeks ago. At first: logging works and it seems that jboss still uses log4j wich is configured in standalone.xml/standalone-full.xml. Simply adding a logger category will not work because the log level in consele handler is restricte

AW: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread Stefan Lindner
Hi Sebastien, did you add Dependencies = org.slf4j,org.slf4j.impl,org.slf4j.jcl-over-slf4j,org.apache.log4j to your MANIFEST.MF? --- Stefan -Ursprüngliche Nachricht- Von: Sebastien [mailto:seb...@gmail.com] Gesendet: Freitag, 8. August 2014 12:27 An: users@wicket.apache.org

AW: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread Stefan Lindner
er.formatters.PatternFormatter formatter.COLOR-PATTERN.properties=pattern formatter.COLOR-PATTERN.pattern=%K{level}%d{HH\:mm\:ss,SSS} %-5p [%c] %s%E%n On Fri, Aug 8, 2014 at 1:40 PM, Stefan Lindner wrote: > Hi Sebastien, > > did you add > > Dependencies = > o

AW: Wicket / WildFly 8: Log4J / SLF4J ?

2014-08-08 Thread Stefan Lindner
them as a module. But I don't know if e.g. wicket.jar needs a "Dependencies=org.apache.log4j etc" specification in it's MANIFEST.MF to have access tot he logging system. I did not try this. Mit freundlichen Grüßen --- Stefan Lindner, Visionet Hard- und Software GmbH, Karol

Wicket Migration: Where has AjaxPostprocessingCallDecorator gone

2020-09-14 Thread Stefan Lindner
visionet.de<http://www.visionet.de/> Registergericht Fürth: HRB 6573, Geschäftsführer: Stefan Lindner

AW: Wicket Migration: Where has AjaxPostprocessingCallDecorator gone

2020-09-14 Thread Stefan Lindner
Thank you! So much! Mit freundlichen Grüßen --- Stefan Lindner, Visionet Hard- und Software GmbH, Karolinenstraße 52b, 90763 Fürth Durchwahl: Tel.: 0911/148894-10, FAX: 0911-148894-11, E-Mail: stefan.lind...@visionet.de Zentrale: Tel.: 0911/148894-0, FAX: 0911-148894-99, Internet: http

AW: How to make link that open a new window

2007-08-27 Thread Stefan Lindner
Wich type of Link? A pure Link has a opupSettings getPopupSettings() mthod to set the behavior. -Ursprüngliche Nachricht- Von: fero [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. August 2007 15:37 An: users@wicket.apache.org Betreff: How to make link that open a new window H

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

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

  1   2   3   4   >