Re: [Wicket-user] Skin effect in wicket

2007-05-29 Thread Marc-Andre Houle
The two way I know of : 1. It can be done using variation : http://cwiki.apache.org/WICKET/multiple-markups-per-page.html 2. Also possible by using a Header contributor for CSS... http://wicketframework.org/apidocs/wicket/behavior/HeaderContributor.html Have fun Marc On 5/29/07, Javed <[EMAIL

Re: [Wicket-user] session authentication

2007-05-10 Thread Marc-Andre Houle
examples, but didn't understand what were the basic steps to take..I'm confused whether to use wicket auth-roles, annotations, SignInPanel, SignInPage, etc etc.. :/ I'll take a better look ate the examples ;) Thanks again, Edd Marc-Andre Houle wrote: > > http://wicket

Re: [Wicket-user] session authentication

2007-05-10 Thread Marc-Andre Houle
http://wicketstuff.org/wicket13/signin and http://wicketstuff.org/wicket13/signin2 These are the best place to look! Marc On 5/10/07, eddmosphere <[EMAIL PROTECTED]> wrote: Hi there! I having a bit of trouble implementing session authentication in my application. That is, I haven't quite

Re: [Wicket-user] More than one

2007-04-16 Thread Marc-Andre Houle
Maybe what you are searching would be panel? Is there something you that make that make panels not work for you? Maybe I just don't understand the question, but from what I seen, Panel is the way you should go... :) Marc On 16 Apr 2007 16:49:44 +0200, Daniel Stoch <[EMAIL PROTECTED]> wrote:

Re: [Wicket-user] available application locales

2007-04-04 Thread Marc-Andre Houle
Add a page parameters to your page that include a parameter to the language to use. Make sure to use a bookmarkable page (use bookmarkable link). and to get a nice url, use mounting(Can't find quickly in the wiki, but here's the javadoc

Re: [Wicket-user] available application locales

2007-04-04 Thread Marc-Andre Houle
Add a Link, in the onClick method, add the code to set the local setting for this session. That's it. add(new Link("french_wicket_tag") { public void onClick() { getSession().setLocale(Locale.FRENCH); } }); French version<\a> Maybe there is something I didn't understand in the question, but it s

Re: [Wicket-user] complex user case

2007-04-02 Thread Marc-Andre Houle
I think the use case is doable with wicket. But I'm really not a guru in Javascript and CSS (That is why I like wicket, it is done for me.), but the functionality can need you to implement your own component. (I don't know enough of the autocomplete field to know if is can suite your demands...)

Re: [Wicket-user] XSD / Validation

2007-03-30 Thread Marc-Andre Houle
I think one of your answer can be found in this thread... http://www.nabble.com/XHTML-ContentType-problem-tf3362030.html#a9352755 On 3/29/07, Johannes Schneider <[EMAIL PROTECTED]> wrote: Hi, I am new to Wicket and want to use XHTML and validate the files. I use IntelliJ Idea but I could not

Re: [Wicket-user] howto display html "as is"?

2007-03-27 Thread Marc-Andre Houle
lblArticleContent.setEscapeModelString(false); On 3/27/07, Ralf Eichinger <[EMAIL PROTECTED]> wrote: I'm developing a cms. I want to output a html-string inside a wicket-page. when I do like this: Label lblArticleContent = new Label("lblArticleContent", article.getHtmlContent()); add(lblArticl

Re: [Wicket-user] HTML problem with Opera

2007-03-27 Thread Marc-Andre Houle
Found the problem Opera don't like coordinates that look like 80.0 and must be only 80. Thanks to anybody who could have look and think about this issue! :) Marc On 3/26/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Ok, It is not wicket related but since I don't know w

[Wicket-user] HTML problem with Opera

2007-03-26 Thread Marc-Andre Houle
Ok, It is not wicket related but since I don't know where to ask this and the Opera forum seems a little bit desert, I'm trying within this community that have a lot of bright big brained developers! :) Here is the problem, We generate image, and we also generate image map to make it possible to c

Re: [Wicket-user] attach/detach refactor in 1.x branch

2007-03-22 Thread Marc-Andre Houle
1.X is not the same as a future 1.2.6? I am right to think it is only useful for 1.3 adopters? On 3/22/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: i have just backported the attach/detach refactor into 1.x branch from trunk what this means for you, if you dont already know, is that any time

Re: [Wicket-user] Newbie needs help to generate dynamic content

2007-03-22 Thread Marc-Andre Houle
Are you sure you have add the TextField in the ajaxTarget of the selection change? Maybe you can past us some code to look at it... On 3/22/07, Nicolai Dymosz <[EMAIL PROTECTED]> wrote: Hi All, inside of a form i have CheckBox and a TextField. In Java code i implemented the onSelectionChanged

Re: [Wicket-user] Working with Tree - onClick() different frame target?

2007-03-20 Thread Marc-Andre Houle
You got an example here even if the code is missing, maybe there is a way of using it... http://www.demay-fr.net:8080/WCD13/app/?wicket:bookmarkablePage=wicket-0%3Awicket.contrib.dojo.examples.SplitContainerSample Marc On 3/20/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Nope, we s

Re: [Wicket-user] Working with Tree - onClick() different frame target?

2007-03-20 Thread Marc-Andre Houle
or our requirements. Have you used any Dojo-Wicket framework stuff for this? Thanks! Michel Zitat von Marc-Andre Houle <[EMAIL PROTECTED]>: > Now I understand what you mean. Not sure it is possible, maybe someone with > more "frame" and PageMap experience will be able

Re: [Wicket-user] Working with Tree - onClick() different frame target?

2007-03-20 Thread Marc-Andre Houle
Now I understand what you mean. Not sure it is possible, maybe someone with more "frame" and PageMap experience will be able to answer you In our application, instead of using real frame, we use Dojo which let you display a page with resizable panel that look like frame. So we display one p

Re: [Wicket-user] Working with Tree - onClick() different frame target?

2007-03-20 Thread Marc-Andre Houle
Maybe this can help you. At least, I hope... http://cwiki.apache.org/WICKET/using-frames.html Marc On 3/20/07, Michel Wichers <[EMAIL PROTECTED]> wrote: Hi guys, I'm currently developing a page with two frames. The left frame "SelectionFrame" contains an extensions Tree and the right frame

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-14 Thread Marc-Andre Houle
From a user base standpoint, I am just waiting for core developer to decide something... On 3/14/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: On 3/14/07, Anders Peterson <[EMAIL PROTECTED]> wrote: > Don't poll too much - just decide on something. The core development > team is relatively sma

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-08 Thread Marc-Andre Houle
Who will build the first vote engine using wicket so we will not have to vote in the mailling list directly? :) On 3/8/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: We've gathered a lot of opinions by now (more are still welcome though!) and I think we should let this sink in for a bit. There

Re: [Wicket-user] IMPORTANT: your opinion on the constructor change in 2.0

2007-03-07 Thread Marc-Andre Houle
Here, we are using 1.2.x in production. Thinking of passing to 1.3, but the rewrite would take way too much time to go with 2.0. For us, it was a no brainer decision, why would we want to upgrade with that much effort for peanuts (Not T-Bones). I don't think big production environment will stop

Re: [Wicket-user] Wicket exemples down

2007-03-05 Thread Marc-Andre Houle
Thanks. Will it be the new "standard" example server. I use it often just to get simple idea most of the time! :) On 3/5/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: wicketstuff.org/wicket13 -igor On 3/5/07, Marc-Andre Houle < [EMAIL PROTECTED]> wrote: > Wicket

[Wicket-user] Wicket exemples down

2007-03-05 Thread Marc-Andre Houle
Wicket exemple is down : http://www.wicket-library.com/wicket-examples I got a proxy error. - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your op

[Wicket-user] Fwd: removeComponent?

2007-03-05 Thread Marc-Andre Houle
Make sure that you populate your list in the onAttach instead of the constructor. Most of the time, that was my error. Or, make sure your model is updated at the redraw -- Forwarded message -- From: Jason Roelofs <[EMAIL PROTECTED]> Date: Mar 5, 2007 11:25 AM Subject: [Wicke

Re: [Wicket-user] Ajax refresh of a RenderedDynamicImageRessource

2007-02-27 Thread Marc-Andre Houle
Using directly DynamicImageRessource was a better for my need. Thanks a lot if you have checked, but finally, the problem was only me! :) On 2/26/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I have to display a custom build Image generated by another API. The way I hae thought of it righ

Re: [Wicket-user] Wicket classes shared by multiple mark ups

2007-02-27 Thread Marc-Andre Houle
Here is the wiki article about this : http://cwiki.apache.org/WICKET/multiple-markups-per-page.html On 2/27/07, Chris Colman <[EMAIL PROTECTED]> wrote: I'm new to wicket. I'm just wondering if it's possible for multiple markups to share common wicket Java classes? My aim with this is to provid

Re: [Wicket-user] xhtml compliant TabbedPanel

2007-02-27 Thread Marc-Andre Houle
I think you can just extends AjaxTabbedPanel and provide your own markup if you want. It is what I have done with lot of wicket component... Not done it for now on AjaxTabPanel, but it can be done. On 2/27/07, Ivo van Dongen <[EMAIL PROTECTED]> wrote: Hi, We ran into a little problem with th

[Wicket-user] Ajax refresh of a RenderedDynamicImageRessource

2007-02-26 Thread Marc-Andre Houle
I have to display a custom build Image generated by another API. The way I hae thought of it right now is by extending RenderedDynamicImageResource. Here is the way I work with it : Create a panel containing an Image with the blank ressource. Then, clicking on a link, I refresh the panel, which

Re: [Wicket-user] error page recommendation

2007-02-26 Thread Marc-Andre Houle
getApplicationSettings ().setInternalErrorPage (InternalErrorPage.class); On 2/26/07, Xavier Hanin <[EMAIL PROTECTED]> wrote: Hi, Is there any recommended way to handle errors in wicket? Is it possible to use wicket to display an error page? - Xavier -

Re: [Wicket-user] No java source in wicket example

2007-02-23 Thread Marc-Andre Houle
https://issues.apache.org/jira/browse/WICKET-319 On 2/23/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: That's worth a JIRA report so Martijn can fix it :) Eelco On 2/23/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > Just grab this while checking something

[Wicket-user] No java source in wicket example

2007-02-23 Thread Marc-Andre Houle
Just grab this while checking something in example at http://wicketstuff.org/wicket13/ . When clicking on "source file", the pop-up display but you only have html an properties. There is no java class file. Thought it was worth letting the administrator know! :) Marc ---

Re: [Wicket-user] "span" tag inside "a" tag

2007-02-22 Thread Marc-Andre Houle
Category name Page link lnk = new PageLink("NameLink", new ShowCategory(category)) lnk.add(new Label("name", category.getName())); item.add(lnk); On 2/22/07, Juan Asensio Sánchez <[EMAIL PROTECTED]> wrote: Hi I am tryiung to display a listview, where it must substitute the name of the page an

Re: [Wicket-user] Wicket dev job in the LA Area

2007-02-22 Thread Marc-Andre Houle
Not that bad, now your resume is open to everybody! :) On 2/22/07, cowwoc <[EMAIL PROTECTED]> wrote: Ugh! Sorry for mistakenly posting this to the entire list :( Gili cowwoc wrote: > Hi Daniel, > > I apologize if you get this email twice, as a power-out knocked out my > compute

Re: [Wicket-user] Pass popup parameters from parent page

2007-02-20 Thread Marc-Andre Houle
wer, but how can the searchfield value be retrieved in the popup? And will it actually hold the value in the control or the url string of the component? Marc-Andre Houle wrote: > > here is the way I have done it : > popupSettings.setTarget ("href" + " + '&am

Re: [Wicket-user] Pass popup parameters from parent page

2007-02-19 Thread Marc-Andre Houle
here is the way I have done it : popupSettings.setTarget ("href" + " + '&searchfield=' + document." + searchForm.getId () + "." + textField.getId () + ".value"); On 2/19/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: there is a lot of javascript out there that shows you how to read the currently

Re: [Wicket-user] VOTE on wicket:component

2007-02-14 Thread Marc-Andre Houle
Didn't know about it before, so can't see a possible use case where it is necessary +1 remove. On 2/14/07, Frank Bille <[EMAIL PROTECTED]> wrote: On 2/14/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > On 2/14/07, Ryan Holmes <[EMAIL PROTECTED]> wrote: > > As a long-time Tapestry user (

Re: [Wicket-user] MarkupWriter

2007-02-12 Thread Marc-Andre Houle
On 2/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I don't think there is something for that in wicket, but 1. You can use a Label and setEscapeMarkupId(false); Oops, setEscapeModelStrings 2. You can use simple Label and add a SimpleAttributeModifier. On 2/12

Re: [Wicket-user] MarkupWriter

2007-02-12 Thread Marc-Andre Houle
I don't think there is something for that in wicket, but 1. You can use a Label and setEscapeMarkupId(false); 2. You can use simple Label and add a SimpleAttributeModifier. On 2/12/07, Robert . <[EMAIL PROTECTED]> wrote: Hi, I have been using Tapestry before and kinda enjoyed using the IM

Re: [Wicket-user] Prompt dialog with form submit in ajax

2007-02-07 Thread Marc-Andre Houle
In fact, I don't care if it is core developper or anybody else, every opinion is welcome! :) On 2/7/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I wanted to make a prompt dialog that use Ajax. When you click on the button, it prompt you for a string and than submit the form so

[Wicket-user] Prompt dialog with form submit in ajax

2007-02-07 Thread Marc-Andre Houle
I wanted to make a prompt dialog that use Ajax. When you click on the button, it prompt you for a string and than submit the form so we can use it. I search a lot in the source code and I found a way to make that with AjaxEventBehavior. I submit my behavior to the list just to have opinion of c

Re: [Wicket-user] How to include a form field in the ajax request without form submit

2007-01-31 Thread Marc-Andre Houle
Why not simply use AjaxSubmitLink or AjaxSubmitButton ? It will submit all the form, evidently, but you can do which ever action you want in the onClick handler? Am I missing something? Marc On 1/31/07, Erik van Oosten <[EMAIL PROTECTED]> wrote: Hello Conny, You could use the 'onclick' event

[Wicket-user] AjaxLink setEnabled

2007-01-29 Thread Marc-Andre Houle
I wanted to use setEnabled on an AjaxLink but it does not what I was wanting. If I set setEnable to false on a link, it will remove tag and will put a span instead. If using an ajaxLink, it will only disable the onClick handler. Is there a way to because it is like this? It there a simple way

Re: [Wicket-user] in-progress indicator

2007-01-29 Thread Marc-Andre Houle
I don't know if it can help, but for us, we added this code in our base page to make the cursor change when there is an ajax call in progress : Wicket.Ajax.registerPreCallHandler(function() { document.getElementById("main").style.cursor='progress'; }); Wicket.Ajax.registerPostCal

Re: [Wicket-user] Page Expired

2007-01-26 Thread Marc-Andre Houle
Like Erik say, probably that using a different page map will help you (Got something like that when I didn't use the proper page map name someday.) Give a look to the wiki under this page : http://cwiki.apache.org/WICKET/using-frames.html Marc On 1/26/07, Erik van Oosten <[EMAIL PROTECTED]> wro

Re: [Wicket-user] SubmitLink to open a pop-up

2007-01-25 Thread Marc-Andre Houle
IL PROTECTED]> wrote: class popperupper extends abstractbehavior implements iheadercontributor { // some logic to only output the script once } button { onsubmit() { TextField tf=; String value=tf.getModelObject(); add(new popperupper()); }} -igor On 1/25/07, Marc-Andre Houle <[EMAIL

Re: [Wicket-user] SubmitLink to open a pop-up

2007-01-25 Thread Marc-Andre Houle
url to the popup using requestcycle.urlfor and then output javascript that will open the popup using window.open -igor On 1/25/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > I though I had found the correct solution when I have seen a pop-up > button in the linkomatic example ( h

[Wicket-user] SubmitLink to open a pop-up

2007-01-25 Thread Marc-Andre Houle
I though I had found the correct solution when I have seen a pop-up button in the linkomatic example ( http://www.wicket-library.com/wicket-examples/linkomatic). But, it was nearly only a button with a BookmarkablePageLink. Right now, I want a SubmitLink to open up a pop-up after some processing

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
> wrote: On 1/24/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > > Ok, I got news about the first page expired problem. Problems with page > map that I said before and in the JIRA issue are still there, but the page > expire is gone. Here is why : > In the pop u

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
fault, but, anyway! On 1/24/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Is anything new about this? I also want to know how it is about this issue : https://issues.apache.org/jira/browse/WICKET-206 Thanks. Marc On 1/22/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > &g

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
Is anything new about this? I also want to know how it is about this issue : https://issues.apache.org/jira/browse/WICKET-206 Thanks. Marc On 1/22/07, Johan Compagner <[EMAIL PROTECTED]> wrote: yes i see it, will look it at asap On 1/22/07, Marc-Andre Houle <[EMAIL PROTECTED]>

Re: [Wicket-user] wicket:head with page

2007-01-24 Thread Marc-Andre Houle
Yeah, but when you have big chunk and everything, you don't necessary want this to be in the Java world. At least, that what I think since I want all my "decoration" in html and all my logic in java... On 1/24/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: On 1/24/07, Mar

Re: [Wicket-user] wicket:head with page

2007-01-24 Thread Marc-Andre Houle
to do, but I would like to clear this thing out in my head... Marc On 1/24/07, Timo Rantalaiho <[EMAIL PROTECTED]> wrote: On Wed, 24 Jan 2007, Marc-Andre Houle wrote: > In the wiki, there is a gotcha that look like this : > Adding wicket:head to a Page > > is intended for pane

Re: [Wicket-user] wicket:head with page

2007-01-24 Thread Marc-Andre Houle
This is a child markup and here is its content. Notice that I have a wicket:head above. On 25/01/07, Marc-Andre Houle <[EMAIL PROTECTED] > wrote: > In the wiki, there is a gotcha that look like this : > Adding wicket:he

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Marc-Andre Houle
There is always the classic : getApplicationSettings ().setInternalErrorPage (MyCustomErrorPage.class); But that will not give you the exception thrown. On 1/24/07, Apaar Trivedi <[EMAIL PROTECTED]> wrote: Hi all, I am trying to make a custom exception page. I have created a class which overr

[Wicket-user] wicket:head with page

2007-01-24 Thread Marc-Andre Houle
In the wiki, there is a gotcha that look like this : Adding wicket:head to a Page is intended for panels and borders only. Do not add this to a page. The problem is : it is exactly what I wanted to do. I got a child class that need to add some css/javascript to the header of the page. Is it b

Re: [Wicket-user] SURVEY: Are you using Page.before/afterCallComponent

2007-01-23 Thread Marc-Andre Houle
never seen it before. On 1/22/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: You better not look at it either as we're thinking about removing it! :) Eelco On 1/22/07, Ingram Chen <[EMAIL PROTECTED]> wrote: > never use it! (what is that ? :-p > > On 1/23/07, Igor Vaynberg <[EMAIL PROTECTED]>

Re: [Wicket-user] VOTE: IModel and 'model object' name change

2007-01-23 Thread Marc-Andre Houle
If it is user opinion wanted, for what I am it is -1. I would be please with the change if I used wicket for a home hobby of making something easy. But the problem is that I'm working in a production environment. Every thing that will make 2.0 migration harder will make sure that it will not g

Re: [Wicket-user] Possible bug in IE7 with AjaxEventBehavior

2007-01-22 Thread Marc-Andre Houle
et bug, just different browser behavior -igor On 1/22/07, Igor Vaynberg < [EMAIL PROTECTED]> wrote: > > use onclick instead of onchange > > -igor > > > On 1/22/07, Marc-Andre Houle < [EMAIL PROTECTED]> wrote: > > > I was developing from home for my work

[Wicket-user] Possible bug in IE7 with AjaxEventBehavior

2007-01-22 Thread Marc-Andre Houle
I was developing from home for my work last week and since I'm not a Windows fan, I developed under OsX using Firefox, everything was great. Today, I got an issue with AjaxEventBehavior. It seem's that the event is not generated the same way between firefox and IE7. Can somebody tell me how I c

Re: [Wicket-user] Tracking session expire exception

2007-01-22 Thread Marc-Andre Houle
I think the mail didn't pass through sf.net. So, I try again. Marc On 1/16/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Here is the example. Open two tabs with the same page, in each one of them, click on page 2, and see the page map being the same :) Marc P.S. : I includ

Re: [Wicket-user] ApacheCon Europe 2007

2007-01-17 Thread Marc-Andre Houle
I agree with that, maybe make a webcast (or even a podcast for me to listen during the job on my ipod!) of some of the talk (I'm interested in the talk about future 2, 2.1, 3) and reel life problem. That would be really nice to have and would make us think we are not that far away... Marc On 1/

Re: [Wicket-user] Making disappear a section

2007-01-17 Thread Marc-Andre Houle
yeah, I didn't think of it like that. On 1/17/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: leaving the frame means leaving the html tags, and that means the component might not be fully hidden as expected if, for example, it has a css border -igor On 1/17/07, Marc-Andre Ho

Re: [Wicket-user] Making disappear a section

2007-01-17 Thread Marc-Andre Houle
to the correct visibility. Maybe not all the type of component, but particularly container can be of that style. (Like setting invisible a fragment at startup and make it appear when you click something. Anyway, my 2 cents about that. Marc On 1/16/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrot

Re: [Wicket-user] Making disappear a section

2007-01-16 Thread Marc-Andre Houle
so works without JavaScript but does need to make a call to the server. My version is probably more useful when you need to switch more things in and out. Now I reread your question, this does not seem to be the case. So either of the Martijn and Igor solutions are appropriate. Erik. Marc-An

Re: [Wicket-user] Making disappear a section

2007-01-16 Thread Marc-Andre Houle
Every one of you seem's to have a different answer, but I'm not sure which one is the best... So, the solution I decided to use is a mix. I still use my fragment, override the isVisible method. (So it can be used to know if it is visible or not.) I can't override setVisible(), but created a met

[Wicket-user] Making disappear a section

2007-01-16 Thread Marc-Andre Houle
I try to find something to help me but I haven't found what was needed for now. I want to update a Panel via ajax. When you click on an array, it will display some information. You click back on the arrow and it will mask the thing. You click again, everything is back. You know, like when you

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
and than, same window.name (Always this same problem about window name in the pop up!)... Sorry, I feel like being an asshole always asking for the same thing. If I'm not getting it with this, I just tell my boss to put this feature up is ass and I'll do a search result ala google! :) M

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
udecker <[EMAIL PROTECTED]> wrote: You can subclass HttpSessionStore and provide your own implementation of onUnbind(String). Then, use your new HttpSessionStore from your application subclass: public ISessionStore newSessionStore() { return new MySessionStore(); } On 1/15/07, Marc-Andre

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
d the application, it always use the same window name, which is wicket:default. Is it possible to set a particular pagemap when the user login or set a window.name when the user log in? Marc On 1/15/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Damn It, I forgot to past thing in the post !

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
DEBUG ( http-0.0.0.0-18080-4) [Session ] updateSession(): Attaching session to PageMap [PageMap name=wicket:default, access=[]] I think my problem is about page-map and session, but I'm not sure of anything Marc On 1/15/07, Marc-Andre Houle <[EMAIL PROTECTED

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
--- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Marc-Andre Houle *Sent:* 15. januar 2007 15:35 *To:* wicket-user@lists.sourceforge.net *Subject:* [Wicket-user] Tracking session expire exception Is there somebody here that had to track in his application wh

[Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
Is there somebody here that had to track in his application why the session expire? I'm in need of some "hint" on how to efficiently find the damn thing that have made the session expire abruptly. Surely somebody have done something about that! :) Marc ---

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
ght now the default name is the null string. we might change that, or we might do that webpage.getwindowname() thing, or both. but you need to add that rfe to jira in order for it to happen. On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > > In fact, DEFAULT_NAME in page map should

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
In fact, DEFAULT_NAME in page map should not be set to something? Right now, it is null, is there a reason for that? On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Now, my popup code look like this : String parentPageMap = "wicket:default";

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
"wicket:default"; } but "wicket:default" is not externalized anywhere. so for now you can just use that same trick yourself, "wicket:default" string should remain pretty stable. and also add an rfe to expose that somehow, perhaps through WebPage.getWindowName()

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
"and that should be the pagename of the page that is opening the popup. wicket sets window.name=pagemapname" How can I know the pagename of the page opening the popup? getPageMap().getName() return null. On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: To take

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
To take the PageMap, I'm doing a Page.getPageMap(). Why is this pagemap have a null name? how can I set that name? Thanks in advance. Marc On 1/12/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > > I've try

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
And by the way : Wicket 1.2.4 On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I've try what you talk about. I have the impresion that there is only the String representation of the page map that is pass. Should I pass the pageMap Name? and then, how to pass it since

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
ters. so what happens is that when you click on a link in the popup the page behind reloads from a bookmarkable url and shows the results -igor On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > Oh, and thanks in advance if there is an answer to that! > Marc > > On 1

Re: [Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
Oh, and thanks in advance if there is an answer to that! Marc On 1/12/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: It is difficult to explain but the functionality is simple. You got a field to search. and a link to make advanced search. When making an advance search, we want to open

[Wicket-user] From pop-up, page link to change the parent wihtout changing the popup

2007-01-12 Thread Marc-Andre Houle
It is difficult to explain but the functionality is simple. You got a field to search. and a link to make advanced search. When making an advance search, we want to open a pop-up window to get more searching functionality. When the search is done, we display a list of item corresponding to this

Re: [Wicket-user] no cursor in the modal window

2007-01-11 Thread Marc-Andre Houle
I got this issue using wicket 1.2.2, but it was resolved in 1.2.3. Mayby you can try to force reload the page (CTRL-F5) to make sure CSS have been updated. On 1/11/07, Prashant Khanal <[EMAIL PROTECTED]> wrote: I am using wicket-extensions 1.2.3 ans wicket 1.2.3 Do i need to upgrade to newe

Re: [Wicket-user] ApacheCon Europe 2007

2007-01-10 Thread Marc-Andre Houle
If i wasn't in Montreal/Quebec/Canada, I would definitely go with something like drinking beer! Damn it, Europe is too far away to get there and get back in one day and not paying for an airplane ticket! Eh, too bad :) Marc On 1/9/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: As you all pr

Re: [Wicket-user] wicket presentation

2007-01-04 Thread Marc-Andre Houle
I think the best selling point for wicket to be shown on a 10 minute presentation (remember it is really quick 10 minutes!) is markup inheritance, API extensibility (Like extending the Link or Label class), Model and POJO + HTML completely separated. With that, I think you are complete for the ti

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread Marc-Andre Houle
I really like the guy who say : which one is the better, emacs or VI. This is the exact same point here and I like the irony of making this statement in that post! Even if I never touch to tapestry, I think it should be good enough. Why in open source (In general, it's not my first mailling lis

Re: [Wicket-user] Ending up on the page that holds the Panel with the link I just clicked on (how about that for a catchy subject?)

2006-11-28 Thread Marc-Andre Houle
Probably you init the panel in the constructor, maybe try to initialize the panel in the onAttach() method. When using this method, it reload the data every time the page is refreshed. Marc On 11/28/06, Johannes Fahrenkrug <[EMAIL PROTECTED]> wrote: Igor, Thank you for your help. I've tried

[Wicket-user] Wicket job opportunity in Montreal

2006-11-24 Thread Marc-Andre Houle
Hello group. I've posted some question here for some time. My boss just told me today he is watching for one or two other developers to work on Wicket permanently. It's a good environment and there is more than enough job for someone with experience. Also, it is a bilingual environment, so it

Re: [Wicket-user] Authorization startegy redirect but keep parameters

2006-11-17 Thread Marc-Andre Houle
onse page only when you got here directly. > > Otherwise it will use the original URL that was requested while the > > RestartResponseAtInterceptPageException was thrown in your code below. > > > > > Does this solve your problem, or did I misread something? > > > &g

[Wicket-user] Authorization startegy redirect but keep parameters

2006-11-16 Thread Marc-Andre Houle
Hello group, it is again me for another question! :) I'm trying to build an Authorization strategy around AbstractPageAuthorizationStrategy. For now, the authorization strategy is really simple as you will see in this copy-paste of code : protected boolean isPageAuthorized(Class pageClass)

Re: [Wicket-user] Non case sensitive nice URL

2006-11-16 Thread Marc-Andre Houle
Thanks a lot! That was really quick! I love the wicket community/developers... It is so proactive. A really big thanks! Marc On 11/16/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: https://issues.apache.org/jira/browse/WICKET-82 -igor On 11/16/06, Marc-Andre Houle <[EMAIL

[Wicket-user] Non case sensitive nice URL

2006-11-16 Thread Marc-Andre Houle
I use nice URL to mount some page in the usual way : mountBookmarkablePage("/Organization", Organization.class); That is great, but it will make an error if a user enter the url by hand and decide to not use case sensitive. I mean, I can mount organization without the capital letter, but it woul

Re: [Wicket-user] AjaxTabbedPanel with notification on tab change

2006-11-14 Thread Marc-Andre Houle
like this : Wicket.Ajax.registerPreCallHandler(function() { document.getElementById("main").style.cursor='progress'; }); Because since we already use it, there would be thing to change to overwrite it.Thanks in advance for the help.MarcOn 11/14/06, Marc-Andre Houle <[EMAIL PR

Re: [Wicket-user] AjaxTabbedPanel with notification on tab change

2006-11-14 Thread Marc-Andre Houle
Thanks a lot.  It look exactly like what I was expecting.MarcOn 11/14/06, Matej Knopp <[EMAIL PROTECTED]> wrote: Hi.you will have to override newLink() method of AjaxTabbedPanel to modify the link. Also this could help youhttp://jroller.com/page/karthikg?entry=modelling_client_side_form_modificatio

[Wicket-user] AjaxTabbedPanel with notification on tab change

2006-11-14 Thread Marc-Andre Houle
Hello all.I got a challenge to resolve for our application to work how we want it to.  We got a An AjaxTabbedPanel containing different Form to edit some preference.  The problem is, when the user is in edit mode, he can modify thing.  The problem is, when the user modify something without saving i

Re: [Wicket-user] Padding in modal window

2006-11-09 Thread Marc-Andre Houle
In firefox, it did not make the problem.  It seem's to be IE centric. (Firefox is not more cute with a scroll bar, but at least, the window look correct.)On 11/9/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Hello group,I'm using a modal window to display some information.  In t

[Wicket-user] Padding in modal window

2006-11-09 Thread Marc-Andre Houle
Hello group,I'm using a modal window to display some information.  In the window, I got a table to make the display look prettier.  The problem is that the window is really close to the border of the modal window. So I though that a padding around the table (of margin) would do the trick.  The prob

Re: [Wicket-user] set image source

2006-11-06 Thread Marc-Andre Houle
Add in your html an in your Java, add a simple webComponent, to the web component add a simpleAttributemodifier for the "src" attribute.At least, that would look something like this if I have to do it. MarcOn 11/6/06, ryan mckinley <[EMAIL PROTECTED]> wrote: Hello-How do you set the src attribute o

Re: [Wicket-user] [Fwd: Emory Utilities]

2006-11-03 Thread Marc-Andre Houle
I don't know lot about licence, but it seem's it can be used as you want : Licence link found on this page : http://dcl.mathcs.emory.edu/util/index.phpLink to the licence : http://creativecommons.org/licenses/publicdomainOn 11/3/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:It looks nice, but

Re: [Wicket-user] Attribute of the http request

2006-11-02 Thread Marc-Andre Houle
thanks!On 11/2/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: no, getattribute on session retrieves session attributes not request attributes, i guess you are stuck doing it how you are doing now-igor On 11/2/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I all, I got a pretty simple

[Wicket-user] Attribute of the http request

2006-11-02 Thread Marc-Andre Houle
I all, I got a pretty simple question.  I got an attribute in the HttpServletRequest that is accessed this way : RequestCycle rc  = getPage().getRequestCycle ();WebRequest req = (WebRequest)rc.getRequest (); Object o   = req.getHttpServletRequest ().getAttribute ("attribute");The documentation of w

Re: [Wicket-user] Modal window with form

2006-10-26 Thread Marc-Andre Houle
ll check the svn versionwith the example I submitted here.MarcLe 06-10-26 à 03:13, Matej Knopp a écrit :>> Can you please use the latest SVN version (or wait until 1.2.3 is out)> to see if any of those issues persist?>> -Matej>> Marc-Andre Houle wrote:>> I got problems with a

  1   2   >