[Wicket-user] How to close ModalWindow?

2007-01-24 Thread Carfield Yim
Look like I need a AjaxRequestTarget, but how can I get it? Or I can just create one? http://wicketframework.org/wicket-extensions/apidocs/wicket/extensions/ajax/markup/html/modal/ModalWindow.html#close(wicket.ajax.AjaxRequestTarget)

Re: [Wicket-user] How to close ModalWindow?

2007-01-24 Thread Carfield Yim
Sorry, I get it, I have to create some ajax button or link to work with this On 1/24/07, Carfield Yim [EMAIL PROTECTED] wrote: Look like I need a AjaxRequestTarget, but how can I get it? Or I can just create one?

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Prashant Khanal
Well use this in ur css file: .calendar, .calendar table{ z-index: 10[ or suitable value]; } This will make your datepicker appear in front of the modal window. --- Scott Swank [EMAIL PROTECTED] wrote: Note to self: must learn css better. Thanks. On 1/23/07,

Re: [Wicket-user] how to abort the xmlhttprequest

2007-01-24 Thread Prashant Khanal
How to use that in a wicket. Can u explain it a bit more. --- Nino Wael [EMAIL PROTECTED] wrote: Why not use a worker thread? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Prashant Khanal Sent: 23. januar 2007 04:41 To:

[Wicket-user] Listing of the data

2007-01-24 Thread Gennadiy . Vasilevskiy
Hello All, I need to be able to have a generic component which I can use to list the data row by row. Now there is a trick number of columns can vary every time and I do not want to define a new html document for every time(number of columns in my table is data driven coming out of the db).

[Wicket-user] No Page found for component

2007-01-24 Thread Tim Squires
Hi, I have a page based on wicket.extensions.wizard. When the formValidator identifies an invalid field, I call error(a message) on that Component. At that point the following exception is thrown. java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id

Re: [Wicket-user] Issues with Validators

2007-01-24 Thread Ayodeji Aladejebi
private class ExistingUserValidator extends StringValidator{ public void onValidate(FormComponent formComponent, String string) { //lookup database //if username taken // error(formComponent) } protected String resourceKey(FormComponent

Re: [Wicket-user] how to abort the xmlhttprequest

2007-01-24 Thread Johan Compagner
and how to really abort the thing on the serverside. On 1/23/07, Igor Vaynberg [EMAIL PROTECTED] wrote: no it is not supported right now, but it can be built. open up a new feature request in our jira and we will look into it. also outline how you would like the api to look, how are you going

Re: [Wicket-user] how to abort the xmlhttprequest

2007-01-24 Thread Johan Compagner
just fire off a new thread or runnable (using a threadpool) and then connect that thread to a session so that you can poll for it when it is finished. Then you also can say, this takes to long and set a boolean so that the worker thread does do a terminate as soon as possible johan On

Re: [Wicket-user] No Page found for component

2007-01-24 Thread Johan Compagner
i see that you are in an init (constructor call) of your page: myapp.gui.wizards.EditDetailsWizardStep.init(EditDetailsWizardStep.java :109) So why does validator run on that? Thats a new component and those don't have yet (in 1.3) a parent page johan On 1/24/07, Tim Squires [EMAIL

Re: [Wicket-user] Multiple sessions from one client

2007-01-24 Thread Johannes Fahrenkrug
Ok, I went with the no-cookies-but-jsession-id-in-url approach and it works just fine. Here's a link to a site that helped me with the Jetty configuration: http://www.mojavelinux.com/blog/archives/2006/11/disabling_session_cookies_in_jetty/ or - somewhat ugly - in the code: WebAppContext

[Wicket-user] wicket:head with page

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

Re: [Wicket-user] Custom exception page

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

Re: [Wicket-user] Dreamweaver

2007-01-24 Thread Otan
Just like what I said, I can't find any usecase to make a Dreamweaver extensions for Wicket. Who from your team do you expect will use Dreamweaver? The page authors, right? Page authors who are working with the markup concerns only the wicket:id attribute and some wicket tags. Databinder or

[Wicket-user] [wicket-user] change content of modalwindow

2007-01-24 Thread Paul Maarschalkerweerd
Hi, I want to change the content of a modalwindow, to do this I use the method setContent. But the strange thing is that a new window appears in front of the old one. I don't understand why is that. I create a modalwindow on a page, set the content with the setContent method and open it with an

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

2007-01-24 Thread Otan
The following works for me: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; xmlns:wicket= http://www.wicketframework.org; head title~/title wicket:head script

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

2007-01-24 Thread Marc-Andre Houle
Yeah, I know, I also implemented something and It work. But since it is in the gotcha part of the wiki, this mean that we should not do this. But since it work, I don't know why... Marc On 1/24/07, Otan [EMAIL PROTECTED] wrote: The following works for me: !DOCTYPE html PUBLIC -//W3C//DTD

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

2007-01-24 Thread Timo Rantalaiho
On Wed, 24 Jan 2007, Marc-Andre Houle wrote: In the wiki, there is a gotcha that look like this : Adding wicket:head to a Page wicket:head is intended for panels and borders only. Do not add this to a page. The problem is : it is exactly what I wanted to do. I got a child class that

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Apaar Trivedi
Thank you for that but I also need to be able to display the original exception being thrown, so this method did not work for me. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marc-Andre Houle Sent: Wednesday, January 24, 2007 10:02 AM To:

Re: [Wicket-user] Listing of the data

2007-01-24 Thread Igor Vaynberg
see DataTable in wicket-extensions there is an example in wicket-examples under repeaters -igor On 1/24/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello All, I need to be able to have a generic component which I can use to list the data row by row. Now there is a trick number of

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

2007-01-24 Thread Marc-Andre Houle
Wiki : Yes it is if you create an account. The comment of igor in the mailling list archive is directly related to what I want to do. What I want to know is : Why is it not in the wiki, should I update the wiki? I don't want to disturb developer because they surely have something else to do,

Re: [Wicket-user] Issues with Validators

2007-01-24 Thread Igor Vaynberg
yep, that will do it -igor On 1/24/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: private class ExistingUserValidator extends StringValidator{ public void onValidate(FormComponent formComponent, String string) { //lookup database //if username taken

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Apaar Trivedi
Thank you, I am working on this and making some progress. I am having trouble implementing the methods for getProcessor(), newClientInfo() and redirectTo() when I extend the RequestCycle. What should getProcessor and newClientInfo be returning? Thanks -Original Message- From: [EMAIL

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Eelco Hillenius
That's where your custom request cycle comes in: override onRuntimeException in it and return the page you want, doing anything with the passed in exception you like. Eelco On 1/24/07, Apaar Trivedi [EMAIL PROTECTED] wrote: Thank you for that but I also need to be able to display the

Re: [Wicket-user] [wicket-user] change content of modalwindow

2007-01-24 Thread Igor Vaynberg
how about some code, sounds like you are maybe opening another modal window with one already open? -igor On 1/24/07, Paul Maarschalkerweerd [EMAIL PROTECTED] wrote: Hi, I want to change the content of a modalwindow, to do this I use the method setContent. But the strange thing is that a new

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

2007-01-24 Thread Eelco Hillenius
I changed the WIKI entry. Thanks for finding. Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT business topics through

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

2007-01-24 Thread Eelco Hillenius
On 1/24/07, Marc-Andre Houle [EMAIL PROTECTED] wrote: In the wiki, there is a gotcha that look like this : Adding wicket:head to a Page wicket:head is intended for panels and borders only. Do not add this to a page. The problem is : it is exactly what I wanted to do. I got a child class

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Eelco Hillenius
You should extend WebRequestCycle rather than RequestCycle. Eelco On 1/24/07, Apaar Trivedi [EMAIL PROTECTED] wrote: Thank you, I am working on this and making some progress. I am having trouble implementing the methods for getProcessor(), newClientInfo() and redirectTo() when I extend the

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

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

[Wicket-user] how to use GridView in wicket 2.0 snapshot?

2007-01-24 Thread tooy li(Gmail)
hi, it's always complains that Markup with path 'check' not found in fragment: roleList table tr wicket:id=roleList td align=center wicket:id=cols input type=checkbox wicket:id=check / span wicket:id=role/span/td

Re: [Wicket-user] how to use GridView in wicket 2.0 snapshot?

2007-01-24 Thread Igor Vaynberg
gridview has moved from extensions to core, but doesnt yet work with the 2.0snapshots -igor On 1/24/07, tooy li(Gmail) [EMAIL PROTECTED] wrote: hi, it's always complains that Markup with path 'check' not found in fragment: roleList table tr wicket:id=roleList

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

2007-01-24 Thread Eelco Hillenius
Sure. Just wanted to point out that there is an alternative way, which is not better or worse, just different :) Eelco On 1/24/07, Marc-Andre Houle [EMAIL PROTECTED] wrote: Yeah, but when you have big chunk and everything, you don't necessary want this to be in the Java world. At least, that

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Apaar Trivedi
When I do this, does my application still need to implement IRequestCycleFactory? If so, how do I return my extended WebRequestCycle though I must be implementing newWebRequestCycle? If I sound confused on this, I certainly am, so thanks for your patience. What I have right now is extending

Re: [Wicket-user] Custom exception page

2007-01-24 Thread Eelco Hillenius
What you do is let your application provide a request cycle *factory*. You do this by overriding method getDefaultRequestCycleFactory from Application. That method returns an instance of IRequestCycleFactory, which produces the custom request cycle. Now, to make life a little bit easier and avoid

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

2007-01-24 Thread Timo Rantalaiho
On Wed, 24 Jan 2007, Eelco Hillenius wrote: I changed the WIKI entry. Thanks for finding. This remains Note: the use of wicket:head should not even be necessary at all in a Page, since everything in the head of a Page is already contributed to the output. The development team is

[Wicket-user] error on the faq

2007-01-24 Thread Scott Swank
There is a typo in the faq -- which hit one our Wicket test driver developers. The last FAQ How can I hide markup and/or components? should have tr wicket:id=wicket-hideme instead of tr id=wicket-hideme Also, there are CDATA tags wrapping each of the code examples. Cheers, Scott

Re: [Wicket-user] DatePicker and ModalWindow

2007-01-24 Thread Scott Swank
Now you're just going to make me lazier. :) Thanks. On 1/24/07, Prashant Khanal [EMAIL PROTECTED] wrote: Well use this in ur css file: .calendar, .calendar table{ z-index: 10[ or suitable value]; } This will make your datepicker appear in front of the modal

Re: [Wicket-user] Tracking session expire exception

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

Re: [Wicket-user] [wicket-user] change content of modalwindow

2007-01-24 Thread Paul Maarschalkerweerd
the basepage: http://webical.svn.sourceforge.net/viewvc/webical/trunk/src/main/java/org/webical/web/components/CalendarDayViewPanel.java?view=markup and the panels:

[Wicket-user] Dojo contrib: WicketServlet cannot be changed once it is set

2007-01-24 Thread Tim Squires
Hi, I added wicket-contrib-dojo 0.3.1 to app and when it's redeployed I get... java.lang.IllegalStateException: WicketServlet cannot be changed once it is set wicket.protocol.http.WebApplication.setWicketServlet(WebApplication.java :400)

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

2007-01-24 Thread Eelco Hillenius
Changed it, thanks, Eelco On 1/24/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Wed, 24 Jan 2007, Eelco Hillenius wrote: I changed the WIKI entry. Thanks for finding. This remains Note: the use of wicket:head should not even be necessary at all in a Page, since everything in the

Re: [Wicket-user] error on the faq

2007-01-24 Thread Eelco Hillenius
Anyone coming across such typos/ small errors that are obvious, please feel free to fix them right away. Eelco On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: There is a typo in the faq -- which hit one our Wicket test driver developers. The last FAQ How can I hide markup and/or components?

Re: [Wicket-user] error on the faq

2007-01-24 Thread Eelco Hillenius
Oh, that is a bit difficult on the public site :) Eelco On 1/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Anyone coming across such typos/ small errors that are obvious, please feel free to fix them right away. Eelco On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: There is a typo

Re: [Wicket-user] error on the faq

2007-01-24 Thread Eelco Hillenius
http://issues.apache.org/jira/browse/WICKET-235 On 1/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Oh, that is a bit difficult on the public site :) Eelco On 1/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Anyone coming across such typos/ small errors that are obvious, please feel

Re: [Wicket-user] error on the faq

2007-01-24 Thread Scott Swank
kinda :) On 1/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Oh, that is a bit difficult on the public site :) Eelco On 1/24/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Anyone coming across such typos/ small errors that are obvious, please feel free to fix them right away. Eelco

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread dukejansen
The application I'm building must always have bookmarkable URLs which contain all page parameters needed to reconstruct the page. Achieved this currently by letting all page events update state/model, then redirect to a new URL based on that state, so that the URL includes the new state. But

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread dukejansen
I think the current method name makes sense, but what is unclear is whether the CURRENT page is taking up one of the positions. I would think setting the max to 1 would ensure that the pagemap contains the current page and no others. If in fact the current page doesn't need room in the page map,

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
Ok, I got news about the first page expired problem. Problems with page map that I said before and in the JIRA issue are still there, but the page expire is gone. Here is why : In the pop up, I created a bookmarkable page link like this : String parentPageMap = wicket:default; if(pp != null) {

Re: [Wicket-user] Client-side form validation in Wicket 1.2 or 1.3

2007-01-24 Thread Vincent Demay
Hi, We make some client-side validation (not also client-side but with ajax) in Wicket-Contrib-Dojo. But it is not as powerfull as we expected for the moment because we do not have time to do that for the moment. You can see a live demo here : http://www.demay-fr.net:8080/WCD13/app : it is

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread Johan Compagner
But i was talking about the settings maxpageversions. thats not the same thing as how many there can be in the pagemap That depends on the page map that is used (in 1.3 or 2.0) AccessStackPageMap uses by default 5 because that is EvictionStrategy: private IPageMapEvictionStrategy

Re: [Wicket-user] Tracking session expire exception

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

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
pp refer to page parameters that I get in the pop up Here is the context : The bookmarkable page link will be open in the window that open the pop up. This code is in the pop-up. The problem is when I have done that : bpl.setPageMap (PageMap.forName (parentPageMap)); It will create a new

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread dukejansen
Sorry, guess I misunderstood. Still trying to wrap my head around these concepts. We have an app that is all bookmarkable pages so far, but we may encounter cases without them further down the road. But even for our bookmarkable pages, they may have lots of activity on them which is ajax

[Wicket-user] Images problem

2007-01-24 Thread Predrag Spasojevic
Hi all, I'm developing a web application which basically shows lots of pictures. Pictures are stored in a database. I want that the same picture always has the same value of the src attribute no matter where it is displayed. As I understand it is possible only if the image resource is shared.

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread Johan Compagner
Ahh so you are using pages with state. (you use ajax) You just don't want to version them? Because for navigation you only use bookmarkable pages Just have one base page that does serVersioned(false) then all your pages are unversioned. johan On 1/24/07, dukejansen [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Johan Compagner
Why not do it a bit more reliable? for example when you go back use a piece of javascript: window.opener.location.href = bookmarkable url or get the window name from the window.opener.name? (in the popup or when you open the popup) and use that as the target. The only problem that could be is

Re: [Wicket-user] Images problem

2007-01-24 Thread Igor Vaynberg
create a single dynamicimageresource that can load different images based on the id passed in from the url then you just do urlfor(myresource)+id=+id; to build the url there is an article on the wiki that shows how to do this -igor On 1/24/07, Predrag Spasojevic [EMAIL PROTECTED] wrote: Hi

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread Igor Vaynberg
ajax requests shouldnt create versions anyways! did you fix that in 2.0 yet? -igor On 1/24/07, Johan Compagner [EMAIL PROTECTED] wrote: Ahh so you are using pages with state. (you use ajax) You just don't want to version them? Because for navigation you only use bookmarkable pages Just have

Re: [Wicket-user] Strategy to avoid new instances of pages and panels

2007-01-24 Thread dukejansen
Did not know about that functionality. Sounds perfect. Then for pages which must always have bookmarkable URL, we can always extend a base class that sets itself to unversioned, and for other non-bookmarkable pages we can still rely on the standard behavior with back button support. Thanks!

[Wicket-user] flourish right-wing

2007-01-24 Thread limb
If you plan on using this content for any purpose, you should review this disclaimer and copyright notice. Kirwan were on holiday in England when she died but according to family members, They were never called to properly identify the body but did admit, a close family friend did identify the

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Scott Swank
When I use the above StaticImage Wicket looks for the image url in the path of the relevant component like so: com/vegas/cart/wicket/components/scroll/http:/cache.vegas.com/resorts/thehotel/mandalaybaynew.jpg Do I need to add a WebPageResourceStreamLocator or some such thing? The full log

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Igor Vaynberg
how are you creating the static image? -igor On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: When I use the above StaticImage Wicket looks for the image url in the path of the relevant component like so:

Re: [Wicket-user] error on the faq

2007-01-24 Thread Jonathan Locke
That is a typo, but you actually meant to say: tr wicket:id=hideme not: tr wicket:id=wicket-hideme because it's: WebMarkupContainer hideme = new WebMarkupContainer(hideme); not WebMarkupContainer hideme = new WebMarkupContainer(wicket-hideme); Scott Swank wrote: There is a

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Scott Swank
The image is added to the panel like so: add(new StaticImage(productImage, http://cache.vegas.com/resorts/thehotel/mandalaybaynew.jpg;)); And that uses a convenience constructor I added to the original StaticImage: package com.vegas.wicket; import wicket.markup.ComponentTag; import

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Scott Swank
And the html tag is simply: img wicket:id=productImage / Thank you. On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: The image is added to the panel like so: add(new StaticImage(productImage, http://cache.vegas.com/resorts/thehotel/mandalaybaynew.jpg )); And that uses a convenience

Re: [Wicket-user] error on the faq

2007-01-24 Thread Scott Swank
Indeed. On 1/24/07, Jonathan Locke [EMAIL PROTECTED] wrote: That is a typo, but you actually meant to say: tr wicket:id=hideme not: tr wicket:id=wicket-hideme because it's: WebMarkupContainer hideme = new WebMarkupContainer(hideme); not WebMarkupContainer hideme = new

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Igor Vaynberg
that is very peculiar, i dont see a reason for it to look for a packaged resource, what does the produced markup look like? -igor On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: And the html tag is simply: img wicket:id=productImage / Thank you. On 1/24/07, Scott Swank [EMAIL

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Scott Swank
We have added a new ResourceStreamLocator to let us put html files off in a separate directory for our UI team. From our WebApplication: protected void init() { super.init(); CompoundResourceStreamLocator locator =

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Scott Swank
No markup is produced. It's in a ModalWindow. Here's the dump from the Ajax debug window: *INFO: * Initiating Ajax GET request on /wicketapp/app?wicket:interface=:1:openScroll::IBehaviorListenerwicket:behaviorId=0random= 0.46680841416499696 *INFO: *Invoking pre-call handler(s)... *ERROR:

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Igor Vaynberg
i have no idea why you would have that weird stuff in the src attribute, its not in the model. -igor On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: No markup is produced. It's in a ModalWindow. Here's the dump from the Ajax debug window: INFO: Initiating Ajax GET request on

Re: [Wicket-user] How do you load an external image?

2007-01-24 Thread Igor Vaynberg
ah, so the image doesnt even render, i see. i thought that url you showed was in the image's src. so this thread doesnt have anything to do with the staticimage component itself??? -igor On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: No markup is produced. It's in a ModalWindow. Here's the

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

2007-01-24 Thread Otan
Oops! Let me correct my previous post. Based on the new Wiki, wicket:head is not necessary for a child markup if it is a page; the html head is enough to be contributed to the final head of the markup. On 25/01/07, Otan [EMAIL PROTECTED] wrote: The following works for me: !DOCTYPE html PUBLIC

[Wicket-user] where's wicket stuff gmap

2007-01-24 Thread Scott Swank
Is the gmap component gone, or temporarily unavailable? Thank you, Scott -- Scott Swank reformed mathematician - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the

Re: [Wicket-user] where's wicket stuff gmap

2007-01-24 Thread Igor Vaynberg
http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-contrib-gmap/ http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-contrib-gmap-examples/ -igor On 1/24/07, Scott Swank [EMAIL PROTECTED] wrote: Is the gmap component gone, or temporarily unavailable?

[Wicket-user] wicket 2.0

2007-01-24 Thread Prashant Khanal
Is wicket 2.0 released. Where can i find its source code and api? Food fight? Enjoy some healthy debate in the Yahoo! Answers Food Drink QA. http://answers.yahoo.com/dir/?link=listsid=396545367