Re: wicket-datetime 1.3.1 css problem

2008-02-28 Thread Gerolf Seitz
this should be fixed in trunk. Gerolf On Thu, Feb 28, 2008 at 9:21 AM, Andrew Moore [EMAIL PROTECTED] wrote: I've just upgraded to wicket 1.3.1 and seem to be having a problem getting the calendar to display correctly. It works, but it's not picking up calendar css. From having a quick

Re: Basic Knowledge on Wicket - reload content of a panel

2008-02-27 Thread Gerolf Seitz
changes inline: public class MyPage extends WebPage { public Model model = new Model(initial value); public Panel panel2 = new PanelTwo(two,model); public MyPage() { add(new PanelOne(one)); panel2.setOutputMarkupId(true); //needed to call renderComponent method ?

Re: Mounting dynamic URLs

2008-02-27 Thread Gerolf Seitz
in MyWebApplication.init() { mount(new IndexedParamUrlCodingStrategy(bla, MyPage.class)); } Gerolf On Wed, Feb 27, 2008 at 8:46 PM, Martijn Lindhout [EMAIL PROTECTED] wrote: eh... an extra question. How do I enable the IndexedParamUrlCodingStrategy for only one page? According to the

Re: [Newbie question] How to avoid empty boxes?

2008-02-26 Thread Gerolf Seitz
hi, if no ajax is involved, i suggest reading [0] about wicket:enclosure. this should do the trick. cheers, gerolf [0] http://www.systemmobile.com/?page_id=253 On Tue, Feb 26, 2008 at 10:47 AM, Kaspar Fischer [EMAIL PROTECTED] wrote: I have just started looking at Wicket and have a basic

Re: Is there any consistent way to create a custom component which acts as a normal form component with validation capabilities.

2008-02-26 Thread Gerolf Seitz
there's DateField in the wicket-datetime core project. Gerolf On Tue, Feb 26, 2008 at 11:44 AM, Maurice Marrink [EMAIL PROTECTED] wrote: FormComponentPanel was created for these kind of situations. As for the example of its use, i am not sure where to find one but i think it is all pretty

Re: DatePicker creates lots of duplicate javascript

2008-02-26 Thread Gerolf Seitz
Hi Harro, the javascript is for 2 things. 1) dynamic loading of yui libraries. 2) configuration for the datepicker, because you can have datepickers with different configuration on one page. however, if you find a better way, please submit a patch to jira. cheers, Gerolf On Tue, Feb 26, 2008

Re: Outdated Javadoc referenced on wicket.apache.org

2008-02-26 Thread Gerolf Seitz
can we remove the old website? or do we still need it for the 1.2.x releases? Gerolf On Wed, Feb 27, 2008 at 2:47 AM, Kevin Murphy [EMAIL PROTECTED] wrote: Igor Vaynberg wrote: and now its assigned...most of the core team is away on holiday... On the same theme of Wicket web presence

Re: NoClassDefFoundError with DatePicker on app reload

2008-02-20 Thread Gerolf Seitz
i experienced the same issue. i got around it by adding this to my context.xml (big thanks to Nick Heudecker): context manager className=*org.apache.catalina.session.PersistentManager saveOnRestart=false/ /context see http://tomcat.apache.org/tomcat-6.0-doc/config/manager.html gerolf *

Re: NoClassDefFoundError with DatePicker on app reload

2008-02-20 Thread Gerolf Seitz
iirc, YuiLib calls Application.get() to check whether the app is in deployment/development mode. gerolf On Wed, Feb 20, 2008 at 9:26 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: Erhm, are they trying to do something like Application.get()? That would cause an exception, causing the

Re: Using Ajax to hide/show components

2008-02-07 Thread Gerolf Seitz
in the ajaxified version you have to call target.setOutputMarkupPlaceHolderTag(true) in the constructor, so that an invisible dummy tag is rendered in case the target is initially invisible. the dummy tag is then replaced with the actual markup of the target, once it's visible. hth, gerolf On

Re: Workaround for AjaxEditableLabel yields java.lang.IllegalAccessError (WICKET-1239)?

2008-02-02 Thread Gerolf Seitz
Gerolf. /Per Gerolf Seitz wrote: i'm sorry this one slipped through. i commited Per's fix. Edvin, can you try with latest trunk to verify it's fixed? gerolf On Jan 31, 2008 8:53 AM, Edvin Syse [EMAIL PROTECTED] wrote: Advanced Technology(R) skrev: Check Per solution

Re: Workaround for AjaxEditableLabel yields java.lang.IllegalAccessError (WICKET-1239)?

2008-01-31 Thread Gerolf Seitz
i'm sorry this one slipped through. i commited Per's fix. Edvin, can you try with latest trunk to verify it's fixed? gerolf On Jan 31, 2008 8:53 AM, Edvin Syse [EMAIL PROTECTED] wrote: Advanced Technology(R) skrev: Check Per solution :

Re: It is there any Component not translate the HTML tag, and display the right format

2008-01-30 Thread Gerolf Seitz
.setEscapeOutputStrings(false) (or something like that) Gerolf On Jan 30, 2008 10:04 AM, laiqinyi [EMAIL PROTECTED] wrote: Hi All, now, I have integrated a wyswyg Editor with Wicket,and I save a lot of HTML tag into DataBase. The problem is, HTML tag could not show correct form, but

Re: How can I use onComponentTag for a PasswordTextField?

2008-01-30 Thread Gerolf Seitz
you could use an AttributeModifier/AttributeAppender gerolf On Jan 30, 2008 11:42 PM, i ii [EMAIL PROTECTED] wrote: how can i use onComponentTag for a PasswordTextField? method is final? i need to add dynamic javascript to onfocus

Re: How can I use onComponentTag for a PasswordTextField?

2008-01-30 Thread Gerolf Seitz
On Jan 30, 2008 11:50 PM, i ii [EMAIL PROTECTED] wrote: thank you for your fast reply. from what you said i found link.add(new AttributeAppender(onmouseover, new Model(foo();return false;), ;)); what benefit is to use AttributeAppender versus onComponentTag? why two ways? because

Re: someone please restart tomcat

2008-01-22 Thread Gerolf Seitz
same thing happened recently with the repeater examples. most of them worked, but one or two threw the OOME. gerolf On Jan 22, 2008 12:37 PM, Johan Compagner [EMAIL PROTECTED] wrote: thats odd the server works just fine except that forminput example johan On Jan 22, 2008 12:05 PM,

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
you need to add the feedbackpanel to the ajaxrequesttarget like: target.addComponent(indicator); gerolf On Jan 22, 2008 12:20 PM, Jean-Baptiste Bellet [EMAIL PROTECTED] wrote: Hello all, This is my first wicket message, so first of all, I would like to gongrats the whole team for the

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
oops, my bad. is was looking for a feedback variable ;) gerolf On Jan 22, 2008 1:18 PM, Jean-Baptiste Bellet [EMAIL PROTECTED] wrote: I've done this, isn't it ? just below the line this.info(getLocalizer().getString(preferences.downloadSuccess, this)); jb Gerolf Seitz wrote: you need

Re: wicket maven archettype, SPRING-HIBERNATE-JPA?

2008-01-22 Thread Gerolf Seitz
i thought about something like that a while ago (but got sidetracked). for 1.3.x it would also be nice to be able to provide a parameter for java5 (like -Dsource=1.5). this will obviously be obsolete for the next wicket versions gerolf On Jan 22, 2008 7:50 PM, Nino Saturnino Martinez Vazquez

Re: wicket maven archettype, SPRING-HIBERNATE-JPA?

2008-01-22 Thread Gerolf Seitz
Vazquez Wael [EMAIL PROTECTED] wrote: Eeek, I guees it would be java 5 only, as JPA are annotations. But I guess we could start with java 5 and then expand .. Gerolf Seitz wrote: i thought about something like that a while ago (but got sidetracked). for 1.3.x it would also be nice

Re: Feedback AjaxButton

2008-01-22 Thread Gerolf Seitz
not only setOutputMarkupId(true), but rather .setOutputMarkupPlaceHolderTag(true) otherwise an invisible component can't be made visible via ajax updates. gerolf On Jan 22, 2008 9:30 PM, Sergiy Yevtushenko [EMAIL PROTECTED] wrote: Jean-Baptiste Bellet wrote: I guess that you need call

Re: About NiceUrl(s)/Mounting ?

2008-01-22 Thread Gerolf Seitz
you might find HybridUrlCodingStrategy useful. gerolf On Jan 23, 2008 2:32 AM, mfs [EMAIL PROTECTED] wrote: Guys, Was just reading about having nice-urls for pages through the use mounting, and was wondering if having nice-urls is just restricted to bookmarkable pages, what about

Re: Wicket blog software

2008-01-17 Thread Gerolf Seitz
i think it would be great to have this kind of application as a showcase product for both wicket and the wicket community. so, if someone (or may two or three) could step up and take the leading role to get this thing started, that would rock. nick, christopher, wdyth? i know that resources are

Re: WicketStuff Links Broken In Internet Exploder 6

2008-01-16 Thread Gerolf Seitz
the fix has been in the repository for a while. are the examples automatically redeployed? if not, could somebody with karma and time do that please? Gerolf On Jan 16, 2008 2:25 PM, Hoover, William [EMAIL PROTECTED] wrote: Does anyone know when the links will be fixed for

Re: WicketStuff Links Broken In Internet Exploder 6

2008-01-16 Thread Gerolf Seitz
thanks for redeploying (whoever did it). William, try again. it should work now, at least it does for me. Gerolf On Jan 16, 2008 2:37 PM, Gerolf Seitz [EMAIL PROTECTED] wrote: the fix has been in the repository for a while. are the examples automatically redeployed? if not, could somebody

Re: WicketStuff Links Broken In Internet Exploder 6

2008-01-16 Thread Gerolf Seitz
- From: Gerolf Seitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 16, 2008 8:55 AM To: users@wicket.apache.org Subject: Re: WicketStuff Links Broken In Internet Exploder 6 thanks for redeploying (whoever did it). William, try again. it should work now, at least it does for me. Gerolf

Re: DatePicker.enableMonthYearSelect

2008-01-15 Thread Gerolf Seitz
we removed our self-developed version of the month/year selection. instead we are using the CalendarNavigator provided by yahoo. just move your mouse over the date in the header and click it. regards, gerolf On Jan 15, 2008 5:45 PM, Clay Lehman [EMAIL PROTECTED] wrote: Hey Everyone, I

Re: DatePicker.enableMonthYearSelect

2008-01-15 Thread Gerolf Seitz
that you could click the month... -Original Message- From: Gerolf Seitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 15, 2008 1:54 PM To: users@wicket.apache.org Subject: Re: DatePicker.enableMonthYearSelect we removed our self-developed version of the month/year selection

Re: DatePicker.enableMonthYearSelect

2008-01-15 Thread Gerolf Seitz
suggest painting a dropdown-looking box (and triangle) around the month/year...If you point me in the right direction, I can see what I can do about a patch, but no promises that I would be successful or quick. -Clay -Original Message- From: Gerolf Seitz [mailto:[EMAIL PROTECTED] Sent

Re: Type safe roles for AUTH-ROLES?

2008-01-14 Thread Gerolf Seitz
for a comparison between auth-roles and swarm/wasp, take a look at http://wicketstuff.org/confluence/display/STUFFWIKI/Security+Framework+Comparison gerolf On Jan 14, 2008 11:14 PM, C. Bergström [EMAIL PROTECTED] wrote: On Mon, 2008-01-14 at 13:51 -0800, Dan Kaplan wrote: What? Really?

Re: lang.merge is not a function error

2008-01-13 Thread Gerolf Seitz
is the YUI menu from the wicketstuff project? if so, what YUI version does it use? i suspect this only happens if the YUI menu js files (yahoo, dom, event, menu, ...) are loaded before the datepickers yuiloader-beta-min.js. yuiloader checks if YAHOO.lang is already available (which it would be if

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread Gerolf Seitz
see the recent thread calling javascript function on wicket component's onclick gerolfOn Jan 11, 2008 5:00 PM, bmarvell [EMAIL PROTECTED] wrote: I'd like to be able to run a piece of javascript after each wicket ajax update. Is this possible without hacking the source and if so how?

Re: How do I call my javascript after each wicket partial update?

2008-01-11 Thread Gerolf Seitz
sorry, sent the mail too fast earlier. if you want to execute a certain piece of js code after *every* (successful) ajax update, you can use the following js code: wicketGlobalPostCallHandler = function { alert('successful partial update'); } as wicket user already said, you can also add

Re: calling javascript function on wicket component's onclick

2008-01-10 Thread Gerolf Seitz
you need to override getAjaxCallDecorator() on the AjaxLink and return a new AjaxCallDecorator that either prepends, appends (or both) your custom javascript to the javascript created by the link. cheers, Gerolf On Jan 10, 2008 11:05 AM, mbelarbi [EMAIL PROTECTED] wrote: Hi, I want to call

Re: calling javascript function on wicket component's onclick

2008-01-10 Thread Gerolf Seitz
; } } } } On Jan 10, 2008 2:16 PM, mbelarbi [EMAIL PROTECTED] wrote: How would i do that for what i have? Gerolf Seitz wrote: you need to override getAjaxCallDecorator() on the AjaxLink and return a new AjaxCallDecorator that either prepends, appends (or both) your custom

Re: find component by id

2008-01-09 Thread Gerolf Seitz
you could call visitChildren(IVisitor) on the page and use Component#getMarkupId to find the matching component. hth, Gerolf On Jan 10, 2008 3:13 AM, Ryan Sonnek [EMAIL PROTECTED] wrote: is there any way to locate a component in a page with only the markup id? For scriptaculous

Re: Changing the year of a DatePicker

2008-01-08 Thread Gerolf Seitz
Hi Martijn, if you override DatePicker#enableMonthYearSelection and let it return true, a month and year selector is available. just click on the current date (eg. January 2008) and the so called Calendar Navigator should appear. hth, Gerolf On Jan 8, 2008 8:29 AM, Martijn Lindhout [EMAIL

Re: Changing the year of a DatePicker

2008-01-08 Thread Gerolf Seitz
this should be enabled by default... -igor On Jan 8, 2008 12:07 AM, Gerolf Seitz [EMAIL PROTECTED] wrote: Hi Martijn, if you override DatePicker#enableMonthYearSelection and let it return true, a month and year selector is available. just click on the current date (eg. January 2008

Re: [ANNOUNCE] Apache Wicket 1.3 released

2008-01-04 Thread Gerolf Seitz
and another one: http://www.jaxmag.com/itr/news/psecom,id,39414,nodeid,146.html Gerolf On Jan 4, 2008 1:58 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: Another couple of links with some publicity for Wicket: - http://www.javalobby.org/java/forums/t105230.html -

Re: DatePicker NaN

2008-01-03 Thread Gerolf Seitz
i reopened the issue and will take a look at it tonight. thanks for reporting it. Gerolf On Jan 3, 2008 10:58 AM, Federico Fanton [EMAIL PROTECTED] wrote: On Wed, 19 Sep 2007 18:19:15 +0200 Gerolf Seitz [EMAIL PROTECTED] wrote: ivana filed an issue today (WICKET-989) and i already

Re: DatePicker NaN

2008-01-03 Thread Gerolf Seitz
Federico, is it possibly that you try it with the latest trunk? the fix is in and it will be included in 1.3.1 Regards, Gerolf On Jan 3, 2008 10:58 AM, Federico Fanton [EMAIL PROTECTED] wrote: On Wed, 19 Sep 2007 18:19:15 +0200 Gerolf Seitz [EMAIL PROTECTED] wrote: ivana filed an issue

Re: How can i present a busy component

2007-12-21 Thread Gerolf Seitz
hi, depending on what you consider useful, maybe this[0] helps. notice: currently doesn't work for IE. look at the _syncMask function in [1] to see how to make it work. hth, gerolf [0] http://papernapkin.org/pastebin/view/16170/ [1]

Re: Rendering of field contents

2007-12-17 Thread Gerolf Seitz
hi, look in the archives, specifically my answer in this thread[0] ... hth, Gerolf [0] http://www.nabble.com/TextField-rounds-doubles-2C-why--to12997105.html#a13000501 On Dec 17, 2007 11:31 AM, Greven, Jens [EMAIL PROTECTED] wrote: Hi List ;-) I am quite new to the Wicket Framework and

Re: How to refresh component many times in one ajax request

2007-12-17 Thread Gerolf Seitz
On Dec 17, 2007 10:33 PM, Artur W. [EMAIL PROTECTED] wrote: The component doesn't refresh. Only for the last time. How to make it work? that's because the response is sent *AFTER* loop is over, not when target.addComponent(..) is called. what you need is a AjaxSelfUpdatingTimerBehavior,

Re: Using SignInPanel throws FormComponent class org.apache.wicket.markup.html.form.PasswordTextField does not support cookies

2007-12-14 Thread Gerolf Seitz
On Dec 15, 2007 12:37 AM, Frank Bille [EMAIL PROTECTED] wrote: Read this: http://cwiki.apache.org/WICKET/migrate-13.html#Migrate-1.3-PasswordTextFieldnolongersupportscookiesbydefault i added the reason (security issues) for throwing the exception. Gerolf

Re: wicket + spring

2007-12-04 Thread Gerolf Seitz
sure, we have a wiki page [0] about it. hth, Gerolf [0] http://cwiki.apache.org/WICKET/spring.html On Dec 4, 2007 8:38 PM, zandile [EMAIL PROTECTED] wrote: I have been looking on the internet for a clear example of how wicket works with spring and still not clear. The closest thing I

serious change for ajax related unit tests

2007-12-02 Thread Gerolf Seitz
hi all, there has been an issue, that ajax related unit tests didn't test with an ajax request, but rather with a normal request[0]. as a consequence, the generated markup inside the ajax response was actually the markup for normal requests (eg. included wicket tags and wicket attributes, which

Re: how to change years in YUI datepicker ?

2007-12-02 Thread Gerolf Seitz
On Dec 3, 2007 10:32 AM, Maris Orbidans [EMAIL PROTECTED] wrote: Hi I need a calendar that allows to change years quickly. I have an input field where user should enter his birth date. But YUI calendar has buttons to change month only. We can't ask our users to click on those buttons

Re: defaultNullLabel()

2007-11-30 Thread Gerolf Seitz
Alex, this is fixed in current trunk and will be included in 1.3.0-rc2, which frank might be starting to release this weekend. Regards, Gerolf On Nov 30, 2007 2:04 PM, Alexander Landsnes Keül [EMAIL PROTECTED] wrote: I have something of the same issue, if you have a value of in an

Apache Wicket participates in GHOP - Google Highly Open Participation

2007-11-28 Thread Gerolf Seitz
hi folks, today, google launched their GHOP[0] program, which serves as an easy entry for pre-university students (highschool, secondary school) into open source. students can claim small tasks, which are provided by 10 open source organisations, one of which is the Apache Software Foundation[1].

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
hi matt, DateField is derived from FormComponentPanel and thus the markup should look something like this: div wicket:id=dateField class=text small/div maybe we should check that the associated tag is not an input tag, as this is a rather common pitfall, or rename DateField to DateFieldPanel,

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
to error -igor On Nov 27, 2007 1:31 AM, Gerolf Seitz [EMAIL PROTECTED] wrote: i will add a big fat notice to the class's javadoc. it wouldn't hurt either to add more examples to wicket-examples... will do so later this day... Gerolf On Nov 27, 2007 10:27 AM, Jason Anderson

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
as well, since they do not break api well maybe at this point we should make (a) log a warning rather then error out and leave a todo for 1.4 to switch to error -igor On Nov 27, 2007 1:31 AM, Gerolf Seitz [EMAIL PROTECTED] wrote: i will add a big fat notice

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
On Nov 27, 2007 8:37 PM, Johan Compagner [EMAIL PROTECTED] wrote: lol, sometimes the solution is just too damn obvious ;) Gerolf thats called wicket. yeah, obivously ;)

Re: Wicket (advanced) Calendar?

2007-11-26 Thread Gerolf Seitz
maybe you could team up with the webical team (webical.org). Gerolf On Nov 26, 2007 5:25 PM, V. Jenks [EMAIL PROTECTED] wrote: I'm beginning a new commercial project with a partner that has good chances of landing some investment funding in the next year. We've set out using Wicket,

Re: How do I get a hold of the body element so I can add class/id etc?

2007-11-23 Thread Gerolf Seitz
How about org.apache.wicket.markup.html.body.BodyTagAttributeModifier? hth, Gerolf On Nov 23, 2007 7:05 PM, Edvin Syse [EMAIL PROTECTED] wrote: John Krasnay skrev: On Fri, Nov 23, 2007 at 05:05:51PM +0100, Edvin Syse wrote: John Krasnay wrote: Perhaps there's another way to solve

Re: disabled AjaxEditableMultiLineLabel

2007-11-22 Thread Gerolf Seitz
()); } }.setEnabled(LoginSession.get().isAdmin())); and I tested by replacing the LoginSession.get().isAdmin() by false but I'm still able to edit that field Regards Francis On 11/21/07, Gerolf Seitz [EMAIL PROTECTED] wrote: Francis, i would really be interested

Re: Screen resolution and diffrent markup files

2007-11-21 Thread Gerolf Seitz
without knowing what you really want to achieve, you might want to take a look at http://cwiki.apache.org/WICKET/newuserguide.html#Newuserguide-LocalizationandSkinningofApplications Gerolf On Nov 21, 2007 8:24 AM, Artur W. [EMAIL PROTECTED] wrote: hi! Is is possible to create different

Re: disabled AjaxEditableMultiLineLabel

2007-11-21 Thread Gerolf Seitz
what wicket version do you use? this should already work in 1.3rc1 Gerolf On Nov 21, 2007 12:20 PM, Francis De Brabandere [EMAIL PROTECTED] wrote: doing setEnabled(false) on a AjaxEditableMultiLineLabel does not disable the editing feature this can be fixed by overriding onEdit():

Re: disabled AjaxEditableMultiLineLabel

2007-11-21 Thread Gerolf Seitz
Francis, i would really be interested in your code that doesn't seem to work, if you don't mind. as of before Al's fix, it already worked for me because: the label is dis-/enabled in AjaxEditableLabel#onBeforeRender: label.setEnabled(isEnableAllowed() isEnabled()); and since the

Re: Wicket, Selenium and generated id attributes

2007-11-20 Thread Gerolf Seitz
you can call setMarkupId(String) in the constructor of your components. just make sure that the ids are unique in a single page. Gerolf On Nov 20, 2007 1:42 PM, Niels van Kampenhout [EMAIL PROTECTED] wrote: Hi, I am experimenting with Selenium tests for our Wicket application. Many of my

Re: Multiple onchange AjaxUpdatingBehavior

2007-11-15 Thread Gerolf Seitz
unfortunately, this is not (yet) possible, and won't be for 1.3. see [0] for more details... Gerolf [0] https://issues.apache.org/jira/browse/WICKET-214 On Nov 15, 2007 11:04 AM, Bernard Niset [EMAIL PROTECTED] wrote: Hi, I would like to use multiple updating behaviors attached to the

Re: Apache Wicket 1.3.0-rc1 released!

2007-11-11 Thread Gerolf Seitz
i added the link to your blog entry to dzone: http://www.dzone.com/links/apache_wicket_130rc1_released.html everybody who has a dzone account: please vote it up, so it can make it to the frontpage. tia, Gerolf On Nov 11, 2007 1:05 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: This is the

Re: 1.2 or 1.3 beta 4 ?

2007-11-07 Thread Gerolf Seitz
sounds good and congrats... Gerolf On Nov 7, 2007 9:58 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: On 11/7/07, Gerolf Seitz [EMAIL PROTECTED] wrote: On Nov 7, 2007 9:40 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: As for 1.2 or 1.3.. .I suggest 1.3. It is running on a couple

Re: 1.2 or 1.3 beta 4 ?

2007-11-07 Thread Gerolf Seitz
On Nov 7, 2007 9:40 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: See the development list... We're working hard. As for 1.2 or 1.3.. .I suggest 1.3. It is running on a couple of production systems already, and it has some great new stuff I couldn't live without anymore. is the upgrade of

Re: Is Beta5 coming soon? Beta4 has caused these issues for us....

2007-11-02 Thread Gerolf Seitz
you have to use slf4j version 1.4.2 (instead of 1.0.x) in your pom file Gerolf On Nov 2, 2007 8:11 PM, landry soules [EMAIL PROTECTED] wrote: Hello Please Al, what is the fix for this problem with slf4j ? I spent half a day trying every possible combination between log4j and slf4j, and got

Re: IE 3-7

2007-11-01 Thread Gerolf Seitz
On Nov 1, 2007 4:52 PM, William Hoover [EMAIL PROTECTED] wrote: If anyone is interested in running IE versions 3-7 on the same machine checkout http://tredosoft.com/Multiple_IE and http://tredosoft.com/IE7_standalone william, thanks for the link. i tried Multiple IE (for IE6) and it works

Re: Wicket logo and badges anywhere?

2007-10-24 Thread Gerolf Seitz
well yeah, that would probably be too much. i'd still wear it on campus though to spread the word ;) Gerolf On 10/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 10/22/07, Gerolf Seitz [EMAIL PROTECTED] wrote: i was actually thinking about it too. imagine you can spot wicket users

Re: AjaxEditableLabel on empty Labels (not Null)

2007-10-24 Thread Gerolf Seitz
hm, i thought that in the case of an empty string or null the AjaxEditableLabel displays ... Gerolf On 10/24/07, Jan Kriesten [EMAIL PROTECTED] wrote: Hi, I have the following problem: In a DataTable I have AjaxEditableLabel-Entries, which can be empty (i.e. not Null). I want to make

Re: AjaxEditableLabel on empty Labels (not Null)

2007-10-24 Thread Gerolf Seitz
of course, you're right. imho, the defaultNullLabel should really be a defaultNullOrEmptyLabel. Gerolf On 10/24/07, Jan Kriesten [EMAIL PROTECTED] wrote: hi gerolf, hm, i thought that in the case of an empty string or null the AjaxEditableLabel displays ... no, it only displays that

Re: Changing selection in RadioChoice

2007-10-23 Thread Gerolf Seitz
have you looked at AjaxFormChoiceComponentUpdatingBehavior? it doesn't submit the form though. Gerolf On 10/23/07, wheleph [EMAIL PROTECTED] wrote: Hello everyone! I need to capture changing selection in RadioChoice component. Of course I could override

Re: question about 'isInstantiationAuthorized' method, thanks!

2007-10-23 Thread Gerolf Seitz
you can set your own AccessDeniedPage in Application.init(): getApplicationSettings.setAccessDeniedPage( MyAccessDeniedPageWithLinkToJspPage.class); Gerolf On 10/23/07, raybristol [EMAIL PROTECTED] wrote: Hi, I am using isInstantiationAuthorized method in a application class for some

Re: which component to use to preserve the template html

2007-10-22 Thread Gerolf Seitz
you could use a WebMarkupContainer. Gerolf On 10/22/07, Johan Maasing [EMAIL PROTECTED] wrote: I have some places where I use components only to modify the tag attributes. As in: div wicket:id=id/div final Label noopComponent = new Label(id, ); noopComponent.add(new

Re: IndicatingAjaxSubmitLink missing?

2007-10-22 Thread Gerolf Seitz
iirc, AjaxSubmitLink has been marked deprecated in favor of AjaxLink. Gerolf On 10/22/07, Juha Alatalo [EMAIL PROTECTED] wrote: Hi, there is AjaxSubmitLink and IndicatingAjaxLink but not IndicatingAjaxSubmitLink. Are you planning to create one? - Juha

Re: IndicatingAjaxSubmitLink missing?

2007-10-22 Thread Gerolf Seitz
oh sorry, that was AjaxSubmitButton, so forget my first answer. if you look at IndicatingAjaxLink, it's really a matter of a couple of lines to add the Indicating-feature. so you could easily roll your own :) Gerolf On 10/22/07, Gerolf Seitz [EMAIL PROTECTED] wrote: iirc, AjaxSubmitLink

Re: Wicket logo and badges anywhere?

2007-10-22 Thread Gerolf Seitz
i was actually thinking about it too. imagine you can spot wicket users on conferences right away cause they're wearing orange t-shirts with a nice W on it ;) On 10/22/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: What about t-shirts, and caps? I have to produce em myself?

Re: Ajax question

2007-10-19 Thread Gerolf Seitz
On 10/19/07, Doug Leeper [EMAIL PROTECTED] wrote: At this point, I am not sure what I need to do to debug. Is there any JS debugging tools that I could use in Firefox that anyone would recommend? you definitely want to use firefug [0] for that purpose. Gerolf [0]

Re: how to change format in DateTimeField?

2007-10-18 Thread Gerolf Seitz
On 10/18/07, Eelco Hillenius [EMAIL PROTECTED] wrote: also I want to prevent user to type in invalid date in the text field as well, becuase if user type some letters in the textfield next to the date picker then the date picker won't start properly as well. I think there's an open

Re: how to change format in DateTimeField?

2007-10-18 Thread Gerolf Seitz
Does it work well? Any issues with licenses/ dependencies? If it is a big improvement, I'd be ok with it if the rest agrees. A good mask component imho would fit wicket-extensions. Though we have to be careful not get ourselves into more maintenance obligations. yep, i totally agree with.

Re: Wicket Article on DevX

2007-10-15 Thread Gerolf Seitz
On 10/15/07, Gwyn Evans [EMAIL PROTECTED] wrote: One thing I like about Jetty is that it's normally clear to see what's mounted where, as the default '/' servlet will list them when running 'mvn jetty:run' (although that's not in our Start.java). we don't need that in Start.java, because Al

Re: Configuring DatePicker

2007-10-14 Thread Gerolf Seitz
i noticed that the mindate only workeswhen the textfield contains a valid date. but i'd have to check again. didn't have the time to investigate further and it was rather a bonus feature than a requirement. Gerolf On 10/14/07, Kent Tong [EMAIL PROTECTED] wrote: Christopher Gardner-2 wrote:

Re: Scrolling browser to newly visible panel?

2007-10-10 Thread Gerolf Seitz
i found two possibilities to do this (although i haven't tried it with wicket ajax): var el = document.getElementById('panelInsertedViaAjax'); 1) document.getElementsByTagName('body')[0].scrollTop = el.offsetTop + el .offsetHeight; 2) el.scrollIntoView(false); // false to position it to the

Re: 'tab' and 'enter' keyboard events.

2007-10-09 Thread Gerolf Seitz
do something like: input onkeypress=processEnterKey();return false; ../ don't know if you have to use onkeypress, onkeydown, onkeyup, but you get the idea. gerolf On 10/9/07, lizz [EMAIL PROTECTED] wrote: I have a panel with some text fields and two buttons (button A and B) I would like the

Re: Update of datepicker value with ajax

2007-10-04 Thread Gerolf Seitz
Per, a temporary fix for now would be to instead of adding the DateTextField to the AjaxRequestTarget, add text.getParent() i'll fix this misbehavior with something similar what matej did with the IndicatingAjaxButton Gerolf On 10/4/07, Per Newgro [EMAIL PROTECTED] wrote: Hi *, I present

Re: wicket datetime / YUI calendar

2007-10-03 Thread Gerolf Seitz
Nino Gerolf Seitz wrote: On 10/1/07, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Multipage calendar http://developer.yahoo.com/yui/examples/calendar/calgrp.html Calendar dates marked with bold http://developer.yahoo.com/yui/examples/calendar/render.html

Re: Session size is constantly increasing on setResponsePage(getPage())

2007-10-03 Thread Gerolf Seitz
i think johan already fixed it in trunk. gerolf On 10/3/07, Martin2 [EMAIL PROTECTED] wrote: Hi, thanks for the quick response. Should I open a JIRA issue for this or is it to minor to justify the overhead? bw, Martin Johan Compagner wrote: ok found it, We are leaking auto

Article about Wicket on javamagazin.de

2007-10-03 Thread Gerolf Seitz
for all those who are capable of reading german, here is an article about wicket on javamagazin.de http://javamagazin.de/itr/online_artikel/psecom,id,933,nodeid,11.html i'll add a link to it in the wiki gerolf

Re: Article about Wicket on javamagazin.de

2007-10-03 Thread Gerolf Seitz
it's also on the frontpage of the magazine. see http://javamagazin.de/itr/ausgaben/pspic/bildgross/66/big4700f14df0a73.gif the second smaller heading right below the jruby heading oh, and the authors of the article will have a talk at the conference w-jax07 in germany. gerolf On 10/3/07, Gerolf

Re: wicket datetime / YUI calendar

2007-10-02 Thread Gerolf Seitz
); } }); form.add(selectedDate); DatePicker datePicker = new DatePicker() { lots of stuff goes here... selectedDate.add(datePicker); regards Nino Gerolf Seitz wrote: Nino, if you assign the DateTextField a model (with a valid date

Re: wicket datetime / YUI calendar

2007-10-01 Thread Gerolf Seitz
hi nino, @ your problem: if there is no model which can be updated (ie with an AjaxFormComponentUpdatingBehavior), so wicket doesn't know what happened on the client side. as a consequence the calendar is initialized with the default dates. are we talking about a standalone calendar with an

Re: Help - Best Practice - Mapping Database Constraint Violation to User Interface

2007-09-29 Thread Gerolf Seitz
there is something for hibernate in the wicketstuff svn repository: wicketstuff-hibernate-behavior https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-hibernate-behavior/ haven't used it myself and i also don't know if there's a wiki page for this. hope it still helps

Re: Wicket-stuff Animator JavascriptSubject

2007-09-28 Thread Gerolf Seitz
questions... gerolf On 9/28/07, NickCanada [EMAIL PROTECTED] wrote: Thanks Gerolf Seitz for adding animator.js functionality to wicket-stuff. I need a bit of help: Can anyone let me know how to implement a JavascriptSubject style subject? I have NumericalStyleSubject and CssStyleSubject

Re: Using Resource to provide background attribute to td-tag?

2007-09-25 Thread Gerolf Seitz
hi, i'd say either: myTd.add(new AttributeModifier(style, true, background-image:url( + RequestCycle.urlFor(myImage) + );)); // use an AttributeAppender if you want to preserve an existing style attribute or override onComponentTag of myTd and put it in the tag like: tag.put(style,

Re: Using Resource to provide background attribute to td-tag?

2007-09-25 Thread Gerolf Seitz
On 9/25/07, wfaler [EMAIL PROTECTED] wrote: I want to use a ResourceReference (or something comparable) apparently, the words in parenthesis are sometimes more important than the rest, so yes: keep it simple... gerolf

Re: Form Feedback

2007-09-25 Thread Gerolf Seitz
Message- From: Gerolf Seitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 25, 2007 11:31 AM To: users@wicket.apache.org Subject: Re: Form Feedback in your case (appending star to the label) i would do the following: // html label wicket:id=inputLabel[label]/labelspan wicket:id

[podcast] Wicket talk at JavaZone 2007

2007-09-22 Thread Gerolf Seitz
for those of you couldn't attend JavaZone 2007 (probably most of you) and haven't already listened to the podcast, here we go: http://www4.java.no/presentations/javazone/2007/podcast/5301.mp3 the rss-feed for all podcasts can be found here: http://www4.java.no/web/show.do?page=141 Xavier, thank

Re: scaffolding in wicket

2007-09-21 Thread Gerolf Seitz
there is a crud panel in the wicketstuff repository made by igor. you can checkout the source here: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-crud/ Gerolf On 9/21/07, Otan [EMAIL PROTECTED] wrote: Many frameworks have this feature because it truly speed

Re: Dojo floating panel

2007-09-20 Thread Gerolf Seitz
sure, you're welcome On 9/20/07, Federico Fanton [EMAIL PROTECTED] wrote: On Wed, 19 Sep 2007 20:00:46 +0200 Gerolf Seitz [EMAIL PROTECTED] wrote: hope it works this time ;) It works very well :) Many thanks for your time and patience

Re: Dojo floating panel

2007-09-19 Thread Gerolf Seitz
() + \);); } hope it works this time ;) Gerolf On 9/19/07, Federico Fanton [EMAIL PROTECTED] wrote: On Tue, 18 Sep 2007 16:19:59 +0200 Gerolf Seitz [EMAIL PROTECTED] wrote: you could pass a reference to the dojofloatingpane to Page2 I tried that, using it from a button inside Page2 like

Re: Dojo floating panel

2007-09-18 Thread Gerolf Seitz
button.add(new AjaxEventBehavior(onclick){ @Override protected void onEvent(AjaxRequestTarget target) { target.prependJavascript(window.close();); } }); but nothing happens, even though in Wicket ajax debug I can see that the window.close is

<    1   2   3   >