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

2007-10-09 Thread Gerolf Seitz
do something like: 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 'ENTER' keyboard event to behave the same way a

Re: Dynamic Entity Classes

2007-10-09 Thread Gerolf Seitz
heh, i knew this would come up ;) On 10/10/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > with Salve you can do it like this: > > UserBalance User.getBalance() { > return accountingService.getBalance (user); > } > > because your User domain object would have access to accountingService. > > s

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 bottom

Re: Configuring DatePicker

2007-10-13 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 w

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

Re: ImageMap and Ajax

2007-10-16 Thread Gerolf Seitz
jonathan posted something about a different approach to imagemaps. http://www.nabble.com/beyond-image-maps-tf4437219.html#a12659672 gerolf On 10/16/07, Michael Sparer <[EMAIL PROTECTED]> wrote: > > > Hi, > > I'm using an ImageMap to display an image. Whenever a user clicks on the > image, the coo

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'

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 wit

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] https://addons.mozil

Re: which component to use to preserve the template html

2007-10-21 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: > > > > > > final Label noopComponent = new Label(id, ""); > noopComponent.add(new AttributeModifi

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

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 myse

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 wantOnSelectionChangedNotif

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: Wicket logo and badges anywhere?

2007-10-23 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. &g

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 w

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 d

Re: Disabling Wicket Ajax Debug in browser

2007-10-31 Thread Gerolf Seitz
in your application init() method do: getDebugSettings().setAjaxDebugModeEnabled(false); gerolf On Nov 1, 2007 6:22 AM, boyinamadhavi <[EMAIL PROTECTED]> wrote: > > Hi > > I am new to wicket. > I using Ajax autocomplete text field. > It is working well. > But i want to disable Wicket Ajax Debug

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 w

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

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

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 upgr

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 f

Re: Doubleclicking on a refreshable Ajax button

2007-11-13 Thread Gerolf Seitz
you can use an IAjaxCallDecorator to disable/hide the button before sending the first ajax request. i'm sure there is plenty to find in the archives... Gerolf On Nov 13, 2007 6:59 PM, Federico Fanton <[EMAIL PROTECTED]> wrote: > Hi everyone! > I'm having a problem with an ajax button and I'd l

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

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 differe

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 LabelAjaxBehav

Re: disabled AjaxEditableMultiLineLabel

2007-11-22 Thread Gerolf Seitz
t) { >super.onSubmit(target); >Util.getBean(GenericLocal.class).saveObject( > experiment.getExperimentDetailStat()); >} >}.setEnabled(LoginSession.get().isAdmin())); > > and I tested by replacing the LoginSession.get().isAdmin() by

Re: How do I get a hold of the 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 anothe

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

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: 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, but it's most probably too late for that. Eel

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
using the component, so > I would have to agree that some sort of warning would be handy > > On Nov 27, 2007 1:14 AM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > > hi matt, > > > > DateField is derived from FormComponentPanel and thus the markup should > look > >

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
ake (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 to the class's javadoc. > > it wouldn't hurt either

Re: DateField renders twice in 1.3.0-rc1

2007-11-27 Thread Gerolf Seitz
> > > > > > > all of these changes can be implemented now 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 >

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

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

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 is

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 butt

Re: serious change for ajax related unit tests

2007-12-03 Thread Gerolf Seitz
portant gaps (like this) that need > coverage. > > From a community perspective, I know I would be comfortable > contributing unit tests to help out. > > On Dec 2, 2007 6:24 PM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > > hi all, > > > > there has been an issue,

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 thi

Re: wicket-datetime formatting

2007-07-26 Thread Gerolf Seitz
hi joseph, this should actually already be applied to trunk (see https://issues.apache.org/jira/browse/WICKET-751) which version are you using? gerolf On 7/26/07, Joseph Brunner <[EMAIL PROTECTED]> wrote: > > Hello, > > First of all, thank you for such a great tool and congratulations on > joini

Re: DateTimeField issue

2007-07-31 Thread Gerolf Seitz
>"missing ( before formal parameters" > >at the function declaration function initasset.installDate1DpJs() { i suspect that asset.installDate is the wicket:id of the component, right? eelco, since this can be considered a frequent usecase (especially combined with a CompoundPropertyModel), we sho

Re: How discover the caller page (wicket 1.2.x)

2007-08-03 Thread Gerolf Seitz
you could have a constructor B(Page referrer) and pass the referrer page as a parameter like: this.setResponsePage(new B(this)); hth, gerolf On 8/3/07, Paolo Di Tommaso <[EMAIL PROTECTED]> wrote: > > Dear Wicket gurus, > > Suppose I have two Wicket page, let's say page A and B, > with the follo

Re: DateField with a Calendar

2007-08-03 Thread Gerolf Seitz
a quick workaround, although maybe not a proper solution would be the following: ... // somewhere in constructor form.add(new DateField("myId", new PropertyModel(this, "calendarDate"))); ... } private void setCalendarDate(Date date) { myCalendar.setTime(date); } private Date getCalendarDate()

Re: ListView + AjaxEditableLabel + move down and move up

2007-08-03 Thread Gerolf Seitz
maybe this is something for you: at http://wicketstuff.org/confluence/display/STUFFWIKI/Script.aculo.us+SortableListView what you could also do is the following: + add two ajaxbuttons "up" and "down" (or images) + change the position of the row-data in the backing list in the onSubmit method of th

Re: ListView + AjaxEditableLabel + move down and move up

2007-08-03 Thread Gerolf Seitz
if the last suggestion is too costly (rendering the whole listview), you could just change the order of the backing list without redrawing it and add some javascript to the requesttarget (target.appendjavascript) which does the dom manipulation... On 8/4/07, Gerolf Seitz <[EMAIL PROTECTED]>

Re: [Newbie] Add a yui calendar without a datetextfield

2007-08-08 Thread Gerolf Seitz
i was looking for AbstractCalendar too... hm, maybe we could use this as an opportunity to provide an all around YUI Calendar integration with features like a standalone calendar, multiple calendars, calendars that open when a specific event occurs (eg. focus of textfield or click on an image). t

Re: Adding Ajax behavior on radio button

2007-08-08 Thread Gerolf Seitz
you could probably go with an all javascript solution, although i don't know if that confuses client- and serverside state. so, when a radiobutton gets clicked, you enable the particular component and disable the other. gerolf On 8/8/07, jq58 <[EMAIL PROTECTED]> wrote: > > > I have a 2 radio butt

Re: Reacting to DateField change

2007-08-09 Thread Gerolf Seitz
we probably shoul rename DateField to DateFieldPanel, as this name has misled at least two other guys too. wdyt, eelco? On 8/9/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > > Ok, thanks anyway :) So.. Markup modification isn't needed, but if I'm > not mistaken attaching the behavior directly

Re: Using pickwick

2007-08-12 Thread Gerolf Seitz
the last time i tried it, i had to put at least one image somehwere in the webapp folder. iirc, details can be found in the readme On 8/12/07, Tauren Mills <[EMAIL PROTECTED]> wrote: > > Can someone explain how to use pickwick from wicketstuff? > > I checked out pickwick from wicketstuff trunk and

Re: TextField onclick ajax

2007-08-14 Thread Gerolf Seitz
to submit the form via ajax, you should use AjaxFormSubmitBehavior. gerolf On 8/14/07, andrea pantaleoni <[EMAIL PROTECTED]> wrote: > > > Hi, > In a Page I have a TextField component and few DropDownChoice inside a > form. > When I add a behaviour to the DropDownChoice I can read the value the

Re: wicket:child in a WebMarkupContainer

2007-08-15 Thread Gerolf Seitz
@ core-devs: The solution that first came to mind was to override add(Component) in > SuperComponent so that it would add the added component to myContainer > instead of 'this'. Unforunately, the add method is final (why!?), so > this can't be done. the javadoc for MarkupContainer#add(Component)

Re: image overlays, what's the best solution ?

2007-08-15 Thread Gerolf Seitz
it would be great, if you could create a page in the wiki and post the link on the list. gerolf On 8/15/07, Antoine Angénieux <[EMAIL PROTECTED]> wrote: > > Okay, I found a solution based uniquely based on ResourceReference for > both the original icon and the decorators to be applied. > > If any

Re: How to get the html combo value in wicket?

2007-08-16 Thread Gerolf Seitz
> > The "combo" is called DropDownChoice in wicket. You can search the forum, > wiki page or any other resource for examples.. if you need more control over the option tags, take a look at the classes Select, SelectOption and SelectOptions in wicket-extensions

Re: How to Hide/View Fields at run time combo selection

2007-08-16 Thread Gerolf Seitz
if you want to initially hide components and show them later via ajax, you have to call .setOutputMarkupPlaceHolderTrag(true) for the component. gerolf On 8/16/07, Edi <[EMAIL PROTECTED]> wrote: > > > Hi, > > I have combo box with 3 items, String, Number, Date > > If I select String, Maximum char

Re: Multiple JS-libraray inclusions

2007-08-17 Thread Gerolf Seitz
there's already a jira issue about this topic: https://issues.apache.org/jira/browse/WICKET-771 On 8/17/07, Jan Kriesten <[EMAIL PROTECTED]> wrote: > > > Hi, > > should there be a common way to include css/libraries? > > Currently, every component dependend on e.g. PrototypeJS is adding it to > t

Re: London Wicket - Bean Editor talk available on-line.

2007-08-17 Thread Gerolf Seitz
hi Al, nice presentation. do you mind if i put a link to the video and code on the wiki? i'd put it between "Migrations" and "Sites using Wicket"... gerolf On 8/17/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > iwork'08 - it's all very easy :-D > > Great one Al! > > Martijn > > On 8/17/07,

Re: London Wicket - Bean Editor talk available on-line.

2007-08-17 Thread Gerolf Seitz
k, i will use the link to the blog entry then. thx On 8/17/07, Al Maw <[EMAIL PROTECTED]> wrote: > > Gerolf Seitz wrote: > > hi Al, > > > > nice presentation. > > do you mind if i put a link to the video and code on the wiki? i'd put > it >

Re: Editable DataTeble

2007-08-20 Thread Gerolf Seitz
i found a solution for the problem with firefox. see the last comment from Al. but seeing that it is planned for 1.3.0-rc1, it's not going to happen in the very near future. you could vote for that issue, so it may get more attention... did you have any chance to look at it, Al? gerolf On 8/20

Re: Reacting to DateField change

2007-08-21 Thread Gerolf Seitz
are you using trunk? in earlier versions of trunk you had to override DatePicker#notifyComponentOnDateSelected to return true. now it returns true by default. don't worry too much about the javascript code generated by DatePicker, it should work well. also, DateField consists of a DateTextField an

Re: AJAX form submit and validation

2007-08-26 Thread Gerolf Seitz
concerning "one field depends on another": have you already taken a look at http://cwiki.apache.org/confluence/display/WICKET/Validating+related+fields? the code is still 1.2, but it should get you started. hth, gerolf On 8/26/07, Ian Godman <[EMAIL PROTECTED]> wrote: > > Hi > > I have a form t

Re: AJAX form submit and validation

2007-08-26 Thread Gerolf Seitz
processing code. > > > Ian > > > - Original Message > From: Gerolf Seitz <[EMAIL PROTECTED]> > To: users@wicket.apache.org > Sent: Sunday, 26 August, 2007 2:10:01 PM > Subject: Re: AJAX form submit and validation > > concerning "one field depend

RefreshingView only gets rendered when TreeTable node is opened twice

2007-08-26 Thread Gerolf Seitz
hi, i have a refreshingview in a treetable column, but it only gets rendered after opening, closing and again opening the corresponding treenode. did anyone else notice this misbehavior? thanks for any hints, gerolf

Re: RefreshingView only gets rendered when TreeTable node is opened twice

2007-08-26 Thread Gerolf Seitz
sion are you using? > > -Matej > > On 8/27/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > > > > hi, > > > > i have a refreshingview in a treetable column, but it only gets rendered > > after opening, closing and again opening the corresponding treenod

Re: DownloadLink hanging

2007-08-27 Thread Gerolf Seitz
well, it kind of is the task of the developers, but it's totally up to them to choose when they fix (or not fix) which bugs. also, what keeps you from contributing? anyway, companies providing commercial support are listed in the wiki: http://cwiki.apache.org/WICKET/companies-that-provide-services

Re: RefreshingView only gets rendered when TreeTable node is opened twice

2007-08-27 Thread Gerolf Seitz
file a jira issue and attached a quickstart: https://issues.apache.org/jira/browse/WICKET-892 On 8/27/07, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > > i'm using trunk (as of yesterday) 1.3.0-SNAPSHOT > i'll file a jira issue later today, including a quickstart >

Re: TreeTable question

2007-08-27 Thread Gerolf Seitz
> Should I create a panel for each tree node type? or should it be > fragment? > How do I get this component in the appropriate column? Do I need to > extend > AbstractTreeColumn? > make sure you override both newCell methods and return null for the one with IRenderable as return type. gerolf

Re: [Wicket-user] suggestion: have Wicket SVN searchable with FishEye

2007-08-28 Thread Gerolf Seitz
On 7/3/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > On 7/2/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > > > > However, I still would not support setting up Fisheye against an > > Apache > > > SVN without infrastructure's support as they are the ones that would > > > have to pick up the

Re: Updating Panels with AjaxLazyLoadingPanel

2007-08-29 Thread Gerolf Seitz
my understanding is that AjaxLazyLoadingPanel is most useful when you have a component that is very costly on the serverside (e.g. loading a big pile of data from the database or doing some crazy calculations, ...). so instead of having to wait for that single component to finish processing, you ad

Re: Is Wicket a proper framework for a Webshop ?

2007-08-29 Thread Gerolf Seitz
> > ..., how many component libraries and tools there > are for them (regardless of the fact the quality of them and whether > that is a good thing in the first place), ... > that's what i like about wicket, you practically don't need additional tools (which you have to learn to use, learn to avoi

Re: Is Wicket a proper framework for a Webshop ?

2007-08-29 Thread Gerolf Seitz
> > google wicket-bench > > -igor > i know wicket-bench, have used it for wicket 1.2 actually. oh, and i like mark occurences too ;)

Re: Why AJAX call resets the focus on the component?

2007-08-29 Thread Gerolf Seitz
you can call AjaxRequestTarget#focusComponent(Component). either you pass the AjaxRequestTarget to the replacing panel and let it set the focus itself or you can have a method which returns the component that should get the focus. gerolf On 8/29/07, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED

Re: Updating Panels with Ajax (is this a proper way of doing so?)

2007-08-30 Thread Gerolf Seitz
i usually do it like this: Panel panel = new StandardPanel(m_cPanelToLoad.getId(), "ThisForm", "ThisTitle"); m_cPanelToLoad.replaceWith(panel); m_cPanelToLoad = panel; target.addComponent(m_cPanelToLoad); if you don't want the "language panel" to decide which component should be created, but rath

Re: WicketStuff JMX

2009-11-24 Thread Gerolf Seitz
it hasn't been integrated with wicket-jmx, since i wasn't really happy with a few things in wicketstuff-jmxpanel. if my memory serves me well, i've seen at least 1 other solution that had even more functionality, i think, than the jmxpanel i started. couldn't say specific project names or links th

Re: WicketStuff JMX

2009-11-24 Thread Gerolf Seitz
ot eat your own dogfood :) just need to find myself some kind of out-of-work-project for that i guess :) nino, thanks for taking care of the jmxpanel update. cheers, gerolf On Tue, Nov 24, 2009 at 12:43 PM, Martijn Dashorst < martijn.dasho...@gmail.com> wrote: > On Tue, Nov 24, 2009 a

Re: WicketStuff JMX

2009-11-24 Thread Gerolf Seitz
t; > > > I'll mention that the one from JBOSS(4.0.2-4.2) have a very retro ui, > > light > > > years from jmxpanel.. > > > > > > regards Nino > > > > > > 2009/11/24 Gerolf Seitz > > > > > >> it hasn't been int

Re: PropertyModels *without* strings

2009-11-25 Thread Gerolf Seitz
as far as i have read, the binding "methods" aren't automatically refactored (eg. renamed), but you get compiler errors in the code where you use the "old names". so it should be fairly easy to fix your own code (in contrast to some strings) On Thu, Nov 26, 2009 at 8:04 AM, Giambalvo, Christian <

Re: PropertyModels *without* strings

2009-11-25 Thread Gerolf Seitz
; If refactoring is not supported it is just easier to use string > > constants, which do not break. > > > > ** > > Martin > > > > 2009/11/26 Gerolf Seitz : > >> as far as i have read, the binding "methods" aren't automatically > refactore

Re: PropertyModels *without* strings

2009-11-26 Thread Gerolf Seitz
On Thu, Nov 26, 2009 at 8:54 AM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > I would say that refactoring calls for improvement in the bindgen > approach. Is it theoretically possible to facilitate refactoring with > bindgen? Is it practically possible to facilitate refactoring w

Re: PropertyModels *without* strings

2009-11-26 Thread Gerolf Seitz
which do not break. > > > > ** > > Martin > > > > 2009/11/26 Gerolf Seitz : > >> as far as i have read, the binding "methods" aren't automatically > refactored > >> (eg. renamed), > >> but you get compiler errors in the c

Re: PropertyModels *without* strings

2009-11-26 Thread Gerolf Seitz
se works with this kind of > >>> stuff, but IDEA definitely has hooks for this kind of stuff. > >>> > >>> On Thu, Nov 26, 2009 at 2:28 AM, Martin Makundi > >>> wrote: > >>> > If refactoring is not supported it is just easier to use st

Re: ATOM/RSS feeds in wicket

2009-12-03 Thread Gerolf Seitz
maybe [0] is of interest for you. [0] http://wicketstuff.org/confluence/display/STUFFWIKI/wicketstuff-rome On Thu, Dec 3, 2009 at 9:03 AM, shiraz memon wrote: > Hi, > > I would like to use ATOM/RSS feed with the application developed on wicket, > I wonder if wicket provides an integration/implem

Re: wicketstuff-jmx-panel in Wicket 1.4, missing a MarkupContainer.add(Component) ?

2009-12-30 Thread Gerolf Seitz
i will try to find some time to take a look at it tonight. gerolf On Wed, Dec 30, 2009 at 11:51 AM, Giovanni wrote: > I got the same error today, trying to use the JmxPanel with Wicket 1.3.7. > > Any idea about how to solve this issue? > > I would really like to use the JmxPanel in my applica

Re: Display timeout page for long running requests

2010-04-06 Thread Gerolf Seitz
you can use an ajax timer to check if the long running process has finished after 5 seconds and abort the process and redirect the user to the timeout page if it hasn't. gerolf On Wed, Apr 7, 2010 at 12:11 AM, Mak wrote: > Hi All, > I am new to wicket framework. I have a requirement that my w

Re: ajaxfallback

2010-04-06 Thread Gerolf Seitz
before adding a component to the ajaxrequesttarget, simply check that the target is not null (aka the request is an ajax request). otherwise you don't need to add the components to the ajaxrequesttarget anyway. gerolf On Wed, Apr 7, 2010 at 12:20 AM, tubin gen wrote: > I am using AjaxLink a

Re: Form field (value) does not update after validation error

2008-12-10 Thread Gerolf Seitz
don't know if i totally understood the setting of your example, but your edit button shouldn't submit/post the form, eg. just use a Link attached to an tag instead of a Button. Gerolf On Wed, Dec 10, 2008 at 1:11 PM, Rutger Jansen <[EMAIL PROTECTED]> wrote: > Well this is of course a simple

Re: Round corners n' stuff? Possible Contribution?

2008-12-22 Thread Gerolf Seitz
i think i have an integration for the latest nifty libs [0] lying around haven't looked at it in quite a while, so maybe it's not that good anyway :) gerolf [0] http://www.html.it/articoli/niftycube/index.html On Fri, Dec 19, 2008 at 9:31 PM, Nino Martinez wrote: > Im fed up with all the di

Re: DateTimeField Error and Question

2009-01-01 Thread Gerolf Seitz
you can override the method newDateTextField(String, PropertyModel) and return a customized DateTextField object. gerolf On Thu, Jan 1, 2009 at 6:44 AM, tbt wrote: > > > Hi > > I am not sure if the DateTextField attribute in the DateTimeField class can > be modified to change the calendar beh

Re: pb to access to this on event onchange on the AutoCompleteTextField

2009-01-05 Thread Gerolf Seitz
hi, in case you haven't done it, can you please file a jira issue with an attached example quickstart project that leads to the error? i will take a look at it later today. thanks, gerolf On Sun, Jan 4, 2009 at 6:15 PM, Olivier Dutrieux wrote: > > I would like create a component that extends A

Re: AutocompleteTextField behaviours

2010-05-23 Thread Gerolf Seitz
AjaxRequestTarget.get() returns the current AjaxRequestTarget, if there is one, otherwise it returns null. use that in the getChoices callback and you should be fine. On Sun, May 23, 2010 at 8:17 PM, Katherine wrote: > Hello, > > Can anybody help newbie with following question: > I'm using Aut

Re: How to get a value of textfield on onBlur event..

2010-06-08 Thread Gerolf Seitz
AjaxFormComponentUpdatingBehavior might be what you want. Regards, Gerolf On Tue, Jun 8, 2010 at 10:58 PM, jammyjohn wrote: > > Hi, > > How to get the value of the textfield on onBlur event? The below code > always prints null for shipIdTf.getInput() > > final TextField shipIdTf = new TextF

<    1   2   3