Re: [Wicket-user] Unit testing - updating a DropDownChoice with Ajax

2007-06-25 Thread Timo Rantalaiho
On Mon, 25 Jun 2007, Jean-Baptiste Quenot wrote: > It's a pity that you didn't mention the JIRA issue in this email > thread, as it would have helped to address the problem in a timely > manner, I was not sure what bug you were exactly talking about and > didn't ask. Anyway now it's fixed, I dis

Re: [Wicket-user] Classcastexception and getSession

2007-06-25 Thread Peter Thomas
On 6/26/07, Flemming Boller <[EMAIL PROTECTED]> wrote: Hi Actually I had 4 different versions :-) But I removed them all, made a recompile and tried again. Same result. The object from getSession() is a MySession object. I will try and make a quickstart zipfile. and attach it. /Flemming

Re: [Wicket-user] Classcastexception and getSession

2007-06-25 Thread Flemming Boller
Hi Actually I had 4 different versions :-) But I removed them all, made a recompile and tried again. Same result. The object from getSession() is a MySession object. I will try and make a quickstart zipfile. and attach it. /Flemming On 6/26/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: >

Re: [Wicket-user] where can i get the wicket1.3 documentation

2007-06-25 Thread Peter Thomas
On 6/26/07, Lec <[EMAIL PROTECTED]> wrote: Im just wondering where can i get the wicket1.3 documentation. Been searching around but to no avail Would be appreciated if somebody point me to the site. -- If you mean 1.3 api javadoc, it is here: http://www.wicketstuff.org/wicket13doc/ -

[Wicket-user] where can i get the wicket1.3 documentation

2007-06-25 Thread Lec
Im just wondering where can i get the wicket1.3 documentation. Been searching around but to no avail Would be appreciated if somebody point me to the site. -- View this message in context: http://www.nabble.com/where-can-i-get-the-wicket1.3-documentation-tf3980393.html#a11299683 Sent from the W

Re: [Wicket-user] Interrupt page constructor and redirect to another page

2007-06-25 Thread Eelco Hillenius
> if you do call setResponsePage() from another page's constructor do you end > up with both of them in the pagemap? With the exception you will only end up > with one, not sure about the other way around. if you do end up with both we > should prob fix that somehow as the other page is not reachab

Re: [Wicket-user] Interrupt page constructor and redirect to another page

2007-06-25 Thread Igor Vaynberg
On 6/25/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > instead of setResponsePage(SetStatePage.class) do throw new > RestartResponseException(SetStatePage.class) That's the workaround for Wicket 1.2. Note that in Wicket 1.3 you should be able to set the response page in the constructor. Also

Re: [Wicket-user] WicketFilter NPE if filter-mapping is servlet-name rather than url-mapping

2007-06-25 Thread Eelco Hillenius
> So I guess I'm wondering if there's any chance getFilterPath could be > massaged to allow servlet-name as well? Could you please open a feature request[1] for that? Cheers, Eelco [1] http://issues.apache.org/jira/browse/WICKET -

Re: [Wicket-user] Interrupt page constructor and redirect to another page

2007-06-25 Thread Eelco Hillenius
> instead of setResponsePage(SetStatePage.class) do throw new > RestartResponseException(SetStatePage.class) That's the workaround for Wicket 1.2. Note that in Wicket 1.3 you should be able to set the response page in the constructor. Also note that this might not actually be better; not having to

Re: [Wicket-user] Interrupt page constructor and redirect to another page

2007-06-25 Thread Igor Vaynberg
On 6/25/07, Tauren Mills <[EMAIL PROTECTED]> wrote: Hi everyone, I have a page constructor that adds several components. However, those components are reliant on the existence of an object in the session. I'd like to test if that object is null, and if it is, redirect the user to a different

[Wicket-user] Interrupt page constructor and redirect to another page

2007-06-25 Thread Tauren Mills
Hi everyone, I have a page constructor that adds several components. However, those components are reliant on the existence of an object in the session. I'd like to test if that object is null, and if it is, redirect the user to a different page where they can make a selection that adds a valid

[Wicket-user] WicketFilter NPE if filter-mapping is servlet-name rather than url-mapping

2007-06-25 Thread James Renfro
Hi All, I'm working in 1.3.0 snapshot. Two or three weeks ago it used to be possible to use a filter-mapping like this one: my.wicket.filter my.servlet But it looks like a recent change to getFilterPath now forces you to use url-mapping instead. This was encouraged before in a

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread Igor Vaynberg
On 6/25/07, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: I see. I mean, I don't :) Knowing all possible layout combinatations upfront doesn't sound like very dynamic, does it? Or am I missing something? Regards, Slava Imeshev sigh, see the thread i pointed out in an earlier email. it expl

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread slava . imeshev
I see. I mean, I don't :) Knowing all possible layout combinatations upfront doesn't sound like very dynamic, does it? Or am I missing something? Regards, Slava Imeshev "Eelco Hillenius" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 06/25/2007 04:27 PM Please respond to wicket-user@list

Re: [Wicket-user] Classcastexception and getSession

2007-06-25 Thread Eelco Hillenius
> I have been troubled with a problem that is very strange. Finally I solved > it, but I am unsure whether I am doing something wrong. > > I have a custom session implementation MySesission extends WebSession. > > On my first page I have a popuplink opening a normal popup-page. In that > popuppage

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread Eelco Hillenius
Thank you, but I don't think this is what I need. Those examples use static content panels, in a sense that IDs of the components are known, while I am looking for dymanic content. You have to know ids and elements they couple to up-front - the markup is leading and components work on particu

Re: [Wicket-user] Automatic repaint of component?

2007-06-25 Thread Igor Vaynberg
you can build a model that has listeners and a notify() method when setobject() is called. then inside the listener you can do { if (getRequestCycle().getRequestTarget() instanceof AjaxRequestTarget) { AjaxRequestTarget t=...; t.add(panela); } -igor On 6/25/07, Thies Edeling <[EMAIL PROTECTED]

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread Igor Vaynberg
On 6/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED] wrote: Hello everyone, We are currently helping a client with establishing web application development. We are considering several variants and right now we are looking at Wicket. I have a couple of questions. I'll really appreciate your feedbac

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread slava . imeshev
Eelco, Thank you, but I don't think this is what I need. Those examples use static content panels, in a sense that IDs of the components are known, while I am looking for dymanic content. I will give an example Using pseudocode: Container c = super.getMainContentPane(); if (groupIsPresent) {

[Wicket-user] Classcastexception and getSession

2007-06-25 Thread Flemming Boller
Hi I have been troubled with a problem that is very strange. Finally I solved it, but I am unsure whether I am doing something wrong. I have a custom session implementation MySesission extends WebSession. On my first page I have a popuplink opening a normal popup-page. In that popuppage I class

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread Eelco Hillenius
> May be I didn't explain it right. I am not looking for "markup inheritance". > I am looking to create a reusable component, let say, BasePage, expose > accessors to containers, define markup for it as described, and then let all > other pages extend the class, w/o ever touching page markup/lay

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread slava . imeshev
May be I didn't explain it right. I am not looking for "markup inheritance". I am looking to create a reusable component, let say, BasePage, expose accessors to containers, define markup for it as described, and then let all other pages extend the class, w/o ever touching page markup/layout. Ex

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Scott Swank
On 6/25/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > On Monday, June 25, 2007, 9:54:58 PM, Landry <[EMAIL PROTECTED]> wrote: > > > > > A problem remains, however : i don't know how to implement > > > IDataProvider.iterator(int first, int count). > > > Must be something like this in oracle : "

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Scott Swank
http://www.oracle.com/technology/oramag/oracle/07-jan/o17asktom.html ;) On 6/25/07, Gwyn Evans <[EMAIL PROTECTED]> wrote: > On Monday, June 25, 2007, 9:54:58 PM, Landry <[EMAIL PROTECTED]> wrote: > > > A problem remains, however : i don't know how to implement > > IDataProvider.iterator(int first

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Eelco Hillenius
> On Monday, June 25, 2007, 9:54:58 PM, Landry <[EMAIL PROTECTED]> wrote: > > > A problem remains, however : i don't know how to implement > > IDataProvider.iterator(int first, int count). > > Must be something like this in oracle : "select * from mytable where > rownum>>=first and rownum > Actual

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Gwyn Evans
On Monday, June 25, 2007, 9:54:58 PM, Landry <[EMAIL PROTECTED]> wrote: > A problem remains, however : i don't know how to implement > IDataProvider.iterator(int first, int count). > Must be something like this in oracle : "select * from mytable where rownum>>=first and rownum But how to do this

Re: [Wicket-user] Unit testing - updating a DropDownChoice with Ajax

2007-06-25 Thread Jean-Baptiste Quenot
* Timo Rantalaiho: > (It's a pity that WicketTester has so many bugs or shortcomings; > if I ever find the spare moment I'll try to understand how it > works to be able to do better bug reports on it or even > patches. Any help for getting into it is welcome!) Hi Timo, It's a pity t

Re: [Wicket-user] Re-using page's look and feel

2007-06-25 Thread Jonathan Locke
just use markup inheritance directly. your base page class can have components and markup that are inherited by all subclasses: http://wicket.sourceforge.net/ExampleMarkupInheritance.html http://www.javalobby.org/java/forums/t69357.html slava.imeshev wrote: > > Hello everyone, > > We are curr

Re: [Wicket-user] A trivial problem with tables that i can't manage

2007-06-25 Thread Landry Soules
Thank you so much for your answer. GridView seems to achieve exactly what i need. A problem remains, however : i don't know how to implement IDataProvider.iterator(int first, int count). Must be something like this in oracle : "select * from mytable where rownum>=first and rownum > On 6/23/07, *

Re: [Wicket-user] Unit testing - updating a DropDownChoice with Ajax

2007-06-25 Thread Jean-Baptiste Quenot
* Jean-Baptiste Quenot: > * glr: > > > > FormTester formTester = > > this.tester.newFormTester("articleEditorForm", false); > > formTester.select("rscTypesList", 0); > > this.tester.executeAjaxEvent("articleEditorForm:rscTypesList", > > "onchange"); > > Can you please try

[Wicket-user] Automatic repaint of component?

2007-06-25 Thread Thies Edeling
Hi, Say I have panel A and panel B each basing their output on the same model. When panel B updates the model through an ajax request, is it possible to have panel A refresh automatically without explicitly adding it to an AjaxRequestTarget ? gr, Thies -

[Wicket-user] Re-using page's look and feel

2007-06-25 Thread slava . imeshev
Hello everyone, We are currently helping a client with establishing web application development. We are considering several variants and right now we are looking at Wicket. I have a couple of questions. I'll really appreciate your feedback. We want to create a base page that other pages would

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-06-25 Thread Frank Bille
Cool. I have invited a colleague of mine. Frank On 6/25/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: sure... Flemming Boller wrote: > could it be 17, then it is fine by me :-) > > have to get to frederiksberg... > > /FLemming > > > On 6/25/07, *Nino Saturnino Martinez

Re: [Wicket-user] HibernateAnnotationComponentConfigurator

2007-06-25 Thread Nathan Hamblen
Ryan Sonnek wrote: > Please feel free to take whatever I've done to use with databinder. If > there's anything I can do to help make the integration as seemless as > possible, let me know. Making sure that releases of it go into the central Maven repository is the only thing I can think of. I

Re: [Wicket-user] HibernateAnnotationComponentConfigurator

2007-06-25 Thread Ryan Sonnek
Hey Nathan. Thanks so much for your reply. Thanks for understanding my comments. I *really* didn't want to come off like a jerk, and I *do* think that there is a place for databinder, it's just not my cup of tea for my current project. Please feel free to take whatever I've done to use with da

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Philip A. Chapman
Let me be the first to give to the Eelco WUG (Wicket User Groups) traveling fund On Mon, 2007-06-25 at 18:24 +0100, Upayavira wrote: > Eelco Hillenius wrote: > > Are you guys gonna make a nice video out of it? ;-) > > No, you'll need to come over and see it in person :-) > > Upayavira > >

Re: [Wicket-user] AjaxFallackDataTables with fixed columns width

2007-06-25 Thread Christian Alejandro Marquez Grabia
I found the place, instead of newrowitem I placed the attribute modifier in newcellitem, there it worked! thanks for the help =) On 6/25/07, Christian Alejandro Marquez Grabia <[EMAIL PROTECTED]> wrote: thanks igor, I tried with the simple attribute modifier, but it does nothing to the width.

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Upayavira
Eelco Hillenius wrote: > Are you guys gonna make a nice video out of it? ;-) No, you'll need to come over and see it in person :-) Upayavira - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE v

Re: [Wicket-user] AjaxFallackDataTables with fixed columns width

2007-06-25 Thread Christian Alejandro Marquez Grabia
thanks igor, I tried with the simple attribute modifier, but it does nothing to the width. I've modified the color in order to test it, and it worked fine with it, but no modifications on the width chris On 6/23/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: On 6/23/07, Christian Alejand

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Eelco Hillenius
Are you guys gonna make a nice video out of it? ;-) Eelco - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to g

Re: [Wicket-user] HibernateAnnotationComponentConfigurator

2007-06-25 Thread Nathan Hamblen
Ryan Sonnek wrote: > I don't want to sound like a databinder basher, Oh I hope not, I was just about to link to your post and say nice things! > In my opinion, database access should be abstracted away from the UI > layer altogether, which leaves the goals of databinder > questionable. Does any

Re: [Wicket-user] Unable to find the markup for the component

2007-06-25 Thread Eelco Hillenius
Yeah, this is due to to the fix I did for http://issues.apache.org/jira/browse/WICKET-694 I'm rolling that fix back now until we have a better solution. Eelco On 6/25/07, Jonathan Locke <[EMAIL PROTECTED]> wrote: > > i'm getting the exception below. > > have there been any recent changes to mar

Re: [Wicket-user] Unit testing - updating a DropDownChoice with Ajax

2007-06-25 Thread Jean-Baptiste Quenot
* glr: > > FormTester formTester = > this.tester.newFormTester("articleEditorForm", false); > formTester.select("rscTypesList", 0); > this.tester.executeAjaxEvent("articleEditorForm:rscTypesList", > "onchange"); Can you please try with: formTester.submit(); inst

[Wicket-user] Xml output with extra lines after removeNodeChild

2007-06-25 Thread Francisco Diaz Trepat - gmail
Hi guys, sorry to be asking this here. But I'm having trouble googling this out. Here is the problem. Given an xml document. I read it on my app and manipulate it, then save it when I am done. When I remove a child, the output files shows all the extra lines from the formatting and indent. So i

Re: [Wicket-user] How to best deffend models and entity classes

2007-06-25 Thread Francisco Diaz Trepat - gmail
Thanks I guess I will have to agree. Although I still think there are some good reasons to have structure like clasesses that only hold value. Some times it's good to have a changing state module that does not compromise final data, until last minute. I think it's best for unitest to have models

Re: [Wicket-user] Unable to find the markup for the component

2007-06-25 Thread Jonathan Locke
oh, i see now that's 1.2.6 not 1.3... still it's about the same stack trace. Jonathan Locke wrote: > > > ah. i think maybe it's not just me: > > https://issues.apache.org/jira/browse/WICKET-592 > > > Jonathan Locke wrote: >> >> i'm getting the exception below. >> >> have there been any

Re: [Wicket-user] Unable to find the markup for the component

2007-06-25 Thread Jonathan Locke
ah. i think maybe it's not just me: https://issues.apache.org/jira/browse/WICKET-592 Jonathan Locke wrote: > > i'm getting the exception below. > > have there been any recent changes to markup finding or is this probably > my own issue? > > thanks, > > jon > > -- > > WicketM

Re: [Wicket-user] Unable to find the markup for the component

2007-06-25 Thread Jonathan Locke
this does at least appear to have started happening after updating wicket (either in the past few days or today). Jonathan Locke wrote: > > i'm getting the exception below. > > have there been any recent changes to markup finding or is this probably > my own issue? > > thanks, > > jon >

[Wicket-user] Unable to find the markup for the component

2007-06-25 Thread Jonathan Locke
i'm getting the exception below. have there been any recent changes to markup finding or is this probably my own issue? thanks, jon -- WicketMessage: Unable to find the markup for the component. That may be due to transparent containers or components implementing IComponentResolve

Re: [Wicket-user] How to best deffend models and entity classes

2007-06-25 Thread severian
Francisco Diaz Trepat - gmail wrote: > > What would be the purpose of a class with only getters and setters besides > adding a new layer to the software? > Well (in the absence of further information), there would be no purpose. But there's no need to have these extra objects in the first pl

Re: [Wicket-user] How to best deffend models and entity classes

2007-06-25 Thread Francisco Diaz Trepat - gmail
Guys, thanks for the answers but I don't think I explained my self.: I understad this is a solution. But how may I better defend models in general. What would be the purpose of a class with only getters and setters besides adding a new layer to the software? public class Person{ String firstN

Re: [Wicket-user] Wicket 1.2.4 - Cross session concurrency issues

2007-06-25 Thread Martijn Dashorst
On 6/25/07, Seldon, Richard <[EMAIL PROTECTED]> wrote: > Really keen to know best place to get a list of outstanding defects between > releases wicket 1.2.4 and 1.2.6 is located? Are there release notes / URL > links etc with this info easily available? Apache issues list starts with > version 1.2

Re: [Wicket-user] Wicket 1.2.4 - Cross session concurrency issues

2007-06-25 Thread Jonathan Locke
one of the great things about open source software is that you can investigate an issue like this yourself and suggest a patch. Seldon, Richard wrote: > > Hello all, > > Further to email sent out back on 15/06/07 regarding concurrency issues > using Wicket 1.2.4 and load runner... > > Rea

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-06-25 Thread Nino Saturnino Martinez Vazquez Wael
sure... Flemming Boller wrote: > could it be 17, then it is fine by me :-) > > have to get to frederiksberg... > > /FLemming > > > On 6/25/07, *Nino Saturnino Martinez Vazquez Wael* > <[EMAIL PROTECTED] > wrote: > > O, then 16 a clock at jayway dk it is? > >

Re: [Wicket-user] NPE in PropertyResolver

2007-06-25 Thread Jonathan Locke
thanks. seems to work now. Al Maw wrote: > > Al Maw wrote: >> Going back to Jonathan's original unit test case, I'm thinking maybe we >> can lazy-init this to make unit testing more bearable. > > Done. > > Al > > -- > Alastair Maw > Wicket-biased blog at http://herebebeasties.com > > --

[Wicket-user] AJAX causing UI state corruption....

2007-06-25 Thread Seldon, Richard
Hello all, Further to email sent out back on 15/06/07 regarding concurrency issues using Wicket 1.2.4. Really keen to know best place to get a list of outstanding defects between releases wicket 1.2.4 and 1.2.6 is located? Are there release notes / URL links etc with this info easily availab

[Wicket-user] Wicket 1.2.4 - Cross session concurrency issues

2007-06-25 Thread Seldon, Richard
Hello all, Further to email sent out back on 15/06/07 regarding concurrency issues using Wicket 1.2.4 and load runner... Really keen to know best place to get a list of outstanding defects between releases wicket 1.2.4 and 1.2.6 is located? Are there release notes / URL links etc with this in

[Wicket-user] Foldable border

2007-06-25 Thread Stefan Kanev
Hello. I'm trying to create a foldable box component - not unlike the quick contacts and labels boxes in gmail. I want to render some markup around a border's contents - particulary, an "open/close" link. So far, I've made it toggle the value of Border.setBorderBodyVisible() and it works fine. B

Re: [Wicket-user] NPE in PropertyResolver

2007-06-25 Thread Al Maw
Al Maw wrote: > Going back to Jonathan's original unit test case, I'm thinking maybe we > can lazy-init this to make unit testing more bearable. Done. Al -- Alastair Maw Wicket-biased blog at http://herebebeasties.com - T

Re: [Wicket-user] NPE in PropertyResolver

2007-06-25 Thread Al Maw
Johan Compagner wrote: > maybe we shouldn't store the class itself at all: > > Map getAndSetters = (Map)classesToGetAndSetters.get(clz); > if (getAndSetters == null) > { > getAndSetters = new ConcurrentHashMap(8); > classesToGetAndSetters.put(clz, ge

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-06-25 Thread Flemming Boller
could it be 17, then it is fine by me :-) have to get to frederiksberg... /FLemming On 6/25/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: O, then 16 a clock at jayway dk it is? Jayway address: Jakob Danefærdsvej 6b Frederiksberg C regards Nino Flemming Boller wrote:

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Al Maw
Jean-Baptiste Quenot wrote: > * Al Maw: > >> You can now sign up for this at http://londonwicket.org. > > Hey, very nice website! Eating your own dogfood. > > I'm just worried by the "WICKET AJAX DEBUG" link :-) Ahem. That'll teach me to deploy stuff when I've had a beer or two. Apologies for

Re: [Wicket-user] Unit testing - updating a DropDownChoice with Ajax

2007-06-25 Thread glr
Hi Here is the code for the test-case. I tried to use FormTester.select(...): public void testSelectResources() { // Set expectations to the mock content store final String title1 = "MyArticle-1"; List editorials = new ArrayList(); editorials.add(title1);

[Wicket-user] OT: Invitation to participate in research project

2007-06-25 Thread Ben Alex
Hello there I would greatly appreciate a small amount of your time to assist with my doctoral research at The University of Newcastle. The research concerns open source licensing and we're seeking developers working on Java projects. The research is supervised, ethics-approved, anonymous and resul

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Jean-Baptiste Quenot
* Al Maw: > You can now sign up for this at http://londonwicket.org. Hey, very nice website! Eating your own dogfood. I'm just worried by the "WICKET AJAX DEBUG" link :-) -- Jean-Baptiste Quenot aka John Banana Qwerty http://caraldi.com/jbq/ ---

Re: [Wicket-user] NPE in PropertyResolver

2007-06-25 Thread Johan Compagner
maybe we shouldn't store the class itself at all: Map getAndSetters = (Map)classesToGetAndSetters.get(clz); if (getAndSetters == null) { getAndSetters = new ConcurrentHashMap(8); classesToGetAndSetters.put(clz, getAndSetters); } but do put(clz.ge

Re: [Wicket-user] NPE in PropertyResolver

2007-06-25 Thread Johan Compagner
i think in the unit test the init method that is now introduced in the PropertyREsolver isn't called: private static Map getClassesToGetAndSetters() { return (Map)applicationToClassesToGetAndSetters.get(Application.get ()); } /** * Initialize cache for this app. *

Re: [Wicket-user] London Wicket Users Group, July 3rd - interested?

2007-06-25 Thread Al Maw
jweekend wrote: > Now that we have confirmed the venue (1 Alie Street, near Aldgate tube - > thanks to Matt Dudbridge who is also going to talk about the development of > the zoomf.com site), we know that there are still a few places left for July > 3rd, so let us know if you'd like to come along.

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-06-25 Thread Nino Saturnino Martinez Vazquez Wael
O, then 16 a clock at jayway dk it is? Jayway address: Jakob Danefærdsvej 6b Frederiksberg C regards Nino Flemming Boller wrote: > Great idea with the calendar! > > It is the same with me, after 16-17 is the best for me too. > > > /Flemming > > On 6/22/07, *Frank Bille* < [EMAIL PROTECTED] >

Re: [Wicket-user] Betr.: Write javascript to inlineframe

2007-06-25 Thread Igor Vaynberg
On 6/24/07, Marieke Vandamme <[EMAIL PROTECTED]> wrote: Yes, the writejavascript lines are indeed in the inlinepage constructor. In my example the code isn't inside InnerPage.html but inside InnerPage.java. My mistake. Thanks ! constructor is the wrong place to write that kind of output beca