Re: [Wicket-user] adding shades jar to rep

2006-10-05 Thread Martijn Dashorst
You can have the maven guru's upload your shades jar: http://maven.apache.org/guides/mini/guide-ibiblio-upload.html Martijn On 10/6/06, Geoff hendrey <[EMAIL PROTECTED]> wrote: > Do I need permission to add the shades jar to the wicket maven repo? > > > > > --

Re: [Wicket-user] help getting SNAPSHOTS properly installed in rep

2006-10-05 Thread Martijn Dashorst
Geoff, Maven will always try to download SNAPSHOT dependencies from your remote repositories. This is the nature of SNAPSHOT: the artifact on the remote server is likely to change, so maven tries to find a fresher version (by comparing the dates). You can remove the wicket repository @sourceforge

Re: [Wicket-user] maven problem

2006-10-05 Thread Martijn Dashorst
Geoff, Wicket 2 has not been migrated properly to the wicket-parent structure... I intend to do so in the coming weeks. As for wicket-extensions not listing commons-logging, that is not necessary, because wicket-2.0-SNAPSHOT already has that one on the classpath, and it is inherited from the depe

Re: [Wicket-user] Add addictional resource folder

2006-10-05 Thread Juergen Donnerstag
Just follow back where addResourceFolder() is already used. It is currently used in WebApplication.internalInit() and PortletApplication.internalInit() and the code looks like ... configure(configuration, wicketFilter.getFilterConfig() .getInitParameter("

[Wicket-user] help getting SNAPSHOTS properly installed in rep

2006-10-05 Thread Geoff hendrey
Clearly I have not properly installed the wicket-2.0-SNAPSHOT in the local repo, because the compilation of the phonebook fails because it can't find the wicket classes. But I can't for the life of me figure out why! the jar files are there in my local repo. I tried putting them there manually,

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Iman Rahmatizadeh
Nice work ! I've written an IDEA plugin for my own use, it has markup creation/viewing, a project browser and some other small stuff. Open up your code so I could contribute ! Iman On 10/5/06, Anders Holmbech Brandt <[EMAIL PROTECTED]> wrote: > Hello wicket-users, > > I would just like to annou

Re: [Wicket-user] ajax refresh component

2006-10-05 Thread Igor Vaynberg
we have an ajax todo list example in wicket-examples :)-IgorOn 10/5/06, Ryan Sonnek <[EMAIL PROTECTED] > wrote:I'm trying to use a link to refresh a component with new content.  any documentation out there on this? here's a simple example to describe what i'm trying to do:list of links:

[Wicket-user] maven problem

2006-10-05 Thread Geoff hendrey
looks like the pom.xml for wicket-extensions fails to properly list commons-logging as a dependency C:\project\wicket-extensions>mvn install [INFO] Scanning for projects... [INFO] - --- [INFO] Building Wicket Extensions [INFO

[Wicket-user] ajax refresh component

2006-10-05 Thread Ryan Sonnek
I'm trying to use a link to refresh a component with new content.  any documentation out there on this?here's a simple example to describe what i'm trying to do:list of links:--link to item1 link to item 2panel with detail info:info about selected item. -

[Wicket-user] JBOSS Reload Classes

2006-10-05 Thread craigdd
I'm using jboss 4.0.4, does anyone know how to configure it to reload changed classes? I want to be able to change my Wicket WebPage subclasses without having to restart the container. -- View this message in context: http://www.nabble.com/JBOSS-Reload-Classes-tf2393072.html#a6672270 Sent from

[Wicket-user] adding shades jar to rep

2006-10-05 Thread Geoff hendrey
Do I need permission to add the shades jar to the wicket maven repo? - 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 & busine

[Wicket-user] Add addictional resource folder

2006-10-05 Thread craigdd
I've beed trying to get this to work for a while now, basically what I want, is to have Wicket load my html files from /WEB-INF/view directory instead of the classes directory. I've been reading a post about seperating your html and it was suggested to use the method addResourceFolder("path"); S

[Wicket-user] saving tab panel state inside a tabbed panel

2006-10-05 Thread Jaime De La Jara
Is it possible to save the state of a tab panel, so if I change to another tab and return to the first panel, the contents are retrieved in some way?If yes, how could be done?Thanks,Jaime. Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail.--

Re: [Wicket-user] saving tab panel state inside a tabbed panel

2006-10-05 Thread Jaime De La Jara
But, if I'm not wrong, in this case I can recover the first panel displayed in the Tab right? This has to do with my former post (http://www.nabble.com/navigation-inside-a-tabbed-panel-tf2391055.html) about how could navigation inside a tab could be achieved, for this I've just used the MarkupConta

Re: [Wicket-user] saving tab panel state inside a tabbed panel

2006-10-05 Thread Igor Vaynberg
your ITab implementation can hang on to the panel instead of creating a new one all the time. see PanelCachingTab.-IgorOn 10/5/06, Jaime De La Jara <[EMAIL PROTECTED]> wrote:Is it possible to save the state of a tab panel, so if I change to another tab and return to the first panel, the contents a

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Igor Vaynberg
On 10/5/06, Justin Lee <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE-Hash: RIPEMD160Awesome.  That's great to hear.  Good luck with the contest.  Maybe itcan live in wicket's svn repo.you mean wicket-stuff -Igor ---

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 yeah. i was just speaking generally not recommending a specific repo as such. perhaps "one of wicket's repos" would've been better. 8^)= Igor Vaynberg wrote: > On 10/5/06, *Justin Lee* <[EMAIL PROTECTED] > > wrote: >

[Wicket-user] Component communication

2006-10-05 Thread Manuel Alejandro de Brito Fontes
I am new to wicket. So far i don't have problems creating simple pages.So i see the AjaxFallbackDefaultDataTable example and I like start sing it. Doing basic operations works great, remove rows without problems (as example).After that i think that it can be possible encapsulate the table and no re

Re: [Wicket-user] Component communication

2006-10-05 Thread Igor Vaynberg
i like to have abstract callback listeners, see below  -Igorpublic abstract class MyDataTable extends DataTable {public MyDataTable(..., List cols, ) {   super(..., addDeleteCol(cols), ...); }private static List addDeleteCol(MyDataTable dt, List cols) {   ArrayList  mycols=new ArrayList(cols.si

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Awesome. That's great to hear. Good luck with the contest. Maybe it can live in wicket's svn repo. Anders Holmbech Brandt wrote: > Hello Justin, > > Thursday, October 5, 2006, 10:35:35 PM, you wrote: > >> -BEGIN PGP SIGNED MESSAGE- >

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Anders Holmbech Brandt
Hello Justin, Thursday, October 5, 2006, 10:35:35 PM, you wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: RIPEMD160 > Two bits (but no shave or a haircut): > 1. Assistant is misspelled in the plug-in name fixed. :-) > 2. Are you going to make the svn repo public? I'd love to look at the

Re: [Wicket-user] ajax refresh on date picker

2006-10-05 Thread Pierre-Yves Saumont
Hi Matej, With this modification, some Ajax link are seeing there onClick methods called with a null target. In the page I load, there is a top menu bar that loaded "Ajax pages". In this "pages" there is genrally a ajax tabbed panel. The inner ajax links are working and the datepicker also w

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Two bits (but no shave or a haircut): 1. Assistant is misspelled in the plug-in name 2. Are you going to make the svn repo public? I'd love to look at the code and perhaps contribute. Anders Holmbech Brandt wrote: > Hello wicket-users, > > I

Re: [Wicket-user] SelfUpdating until a certain condition holds true.

2006-10-05 Thread Martijn Dashorst
isComplete() returns 'true'... no more updates Martijn On 10/4/06, Martin Funk <[EMAIL PROTECTED]> wrote: > Hi, > > my webapp asynchronously kicks of a a process that takes some (1-2 > minutes) time till a result is provided. After the kickoff and before > the result is available I'd like the Pag

Re: [Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Erik van Oosten
Created. https://sourceforge.net/tracker/index.php?func=detail&aid=1571677&group_id=119783&atid=684978 Thanks for the code Pierre-Yves. Regards, Erik. Johan Compagner schreef: > not yet, we should add this to the core > please make a feature request. > > johan > -- Erik van Oosten http://

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Philip A. Chapman
Those crazy Idea users.  :-P On Thu, 2006-10-05 at 13:47 -0600, Justin Lee wrote: -BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 I love you. Anders Holmbech Brandt wrote: > Hello wicket-users, > > I would just like to announce that I have started a wicket plugin for > Intellij Idea

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Igor Vaynberg
homewrecker!On 10/5/06, Justin Lee <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE-Hash: RIPEMD160I love you.  Anders Holmbech Brandt wrote:> Hello wicket-users,>> I would just like to announce that I have started a wicket plugin for > Intellij Idea and have uploadet to the plugin repo

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Anders Holmbech Brandt
Hello Justin, Thursday, October 5, 2006, 9:47:18 PM, you wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: RIPEMD160 > I love you. :-) -- Best regards, Anders - Take Surveys. Earn Cash. Influence the Future of IT

Re: [Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 I love you. Anders Holmbech Brandt wrote: > Hello wicket-users, > > I would just like to announce that I have started a wicket plugin for > Intellij Idea and have uploadet to the plugin repository some minutes > ago and its now available for u

Re: [Wicket-user] Highlight and set currentPage on datatable/dataview

2006-10-05 Thread Igor Vaynberg
you can override newrowitem() and append an attributemodifier to it to set the background coloras far as going to the right page i am affraid there isnt an easy way, you have to query for the index of the user in the list somehow, and then set the proper current page on the table. when you figure i

[Wicket-user] [ANN] Intellij Idea wicket plugin

2006-10-05 Thread Anders Holmbech Brandt
Hello wicket-users, I would just like to announce that I have started a wicket plugin for Intellij Idea and have uploadet to the plugin repository some minutes ago and its now available for use and download. Wicket Assistent Todolist: FEATURES: - Create warnings when there is a

Re: [Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Pierre-Yves Saumont
You can use this in your Application: protected final void init() { String configuration = getWicketServlet().getInitParameter(Application.CONFIGURATION); if (configuration != null && configuration.equals(Application.DEVELOPMENT)) { // ... } } Pierre-Yves Erik van Oosten a

[Wicket-user] Highlight and set currentPage on datatable/dataview

2006-10-05 Thread Mats Norén
Hi, I'm trying do build ranking list where I want to highlight the current users position. I also want the list to be pageable so one requirement is that I need to set the current page to the position of the user. I can calculate this and do setCurrentPage on the datatable but how do highlight the

[Wicket-user] navigation inside a tabbed panel

2006-10-05 Thread Jaime De La Jara
What could be the preferred way to have an application with tabs and have a bunch of pages inside one of the tabs so the navigation between them is equivalent as a navigation between standalone pages? Besides of extending from Panel, What would be the analog of setResponsePage() ?Thanks.Jaime. T

Re: [Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Johan Compagner
not yet, we should add this to the coreplease make a feature request.johanOn 10/5/06, Erik van Oosten < [EMAIL PROTECTED]> wrote::)That I know.I meant, how can I find out from code? I should have been more clear :) Erik.Korbinian Bachl schreef:> Hi Eelco,>> you watch the first 2 lines in t

Re: [Wicket-user] Give a dynamic generated image a "pretty" name

2006-10-05 Thread Johan Compagner
you could play with:public final void mountSharedResource(final String path, final String resourceKey)so add one shared resource under that key. That is the dynamic one that generates based on a request parameter I dont know but maybe that request parameter could be added to the path as /image/numb

Re: [Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Erik van Oosten
:)That I know. I meant, how can I find out from code? I should have been more clear :) Erik. Korbinian Bachl schreef: > Hi Eelco, > > you watch the first 2 lines in the server log > or you can get the config value in the app class... > > Regards > > -- Erik van Oosten http://day

Re: [Wicket-user] is there a forum based on wicket and open source

2006-10-05 Thread Johan Compagner
why don't write one? That would be a good wicket study!johanOn 10/1/06, deafwolf <[EMAIL PROTECTED] > wrote:Hello,I hope to get a copy of code to study wicket,if there is a forum based on wicket and open source, please give me the url or tell me the name.Thank you very much.deafwolf

Re: [Wicket-user] wicket.response.StringResponse not serializable (Wicket 2)

2006-10-05 Thread Johan Compagner
i fixed this The test code first detaches the page nowAnd i made that variable transient in the htmlheader container.johanOn 10/4/06, Jan Vermeulen <[EMAIL PROTECTED]> wrote: I changed the sessionStore of my application (using Wicket 2) to be'wicket.protocol.http.HttpSessionStore' i.s.o.'wicket.pr

Re: [Wicket-user] AjaxSubmitButton don't working with

2006-10-05 Thread Johan Compagner
Add these patches to sourceforege patch/bug/rfe section.On 10/5/06, Stefan Kanev <[EMAIL PROTECTED] > wrote:I'm not sure it is a good solution, but I've made AjaxSubmitButton inherit from WebMarkupComoponent to allow Foo. I'vealso expanded the tag name check to allow button. Works for me now.Submit

Re: [Wicket-user] Development mode?

2006-10-05 Thread Johan Compagner
this should move to the core.We have needed this now more then once.johanOn 10/5/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:if (DEVELOPMENT.equalsIgnoreCase (configurationType)){log.info("You are in DEVELOPMENT mode");  

Re: [Wicket-user] Floating header on datatable

2006-10-05 Thread Gwyn Evans
I'd have thought that while you could probably do that via framesets or IFrames, I'd hope that doing it via CSS would be the way to go. I don't know enough CSS to be sure it's possible, though! /Gwyn On 05/10/06, Renaut, Jonathan E CTR DISA GIG-CS <[EMAIL PROTECTED]> wrote: > > > > This email se

Re: [Wicket-user] AjaxSubmitButton don't working with

2006-10-05 Thread Stefan Kanev
I'm not sure it is a good solution, but I've made AjaxSubmitButton inherit from WebMarkupComoponent to allow Foo. I've also expanded the tag name check to allow button. Works for me now. Submitting the change as a patch. Index: . ===

Re: [Wicket-user] Database localized resources

2006-10-05 Thread Igor Vaynberg
try implementing your own IStringResourceLoader-IgorOn 10/5/06, Yozhik <[EMAIL PROTECTED] > wrote:Hi, All!Does anybody know the proper way to make localized string resources, that would be stored in database?I've tried to implement the IPropertiesFactory to make it load strings fromDB, but the IPro

Re: [Wicket-user] new initiative for a user guide

2006-10-05 Thread Stefan Kanev
Oh, cool. So I might use JPA after all. Is it freely available and is there a change that you might suddenly stop supporting it (I have another projects that would be good to dedirect here). - Take Surveys. Earn Cash. Influenc

Re: [Wicket-user] Second feedbackPanel (Wicket 2)

2006-10-05 Thread Igor Vaynberg
how do you want to tell the messages to go to that feedbackpanel?feedbackpanel takes a filter that you can use to filter which messages it will displayfor example impl see ComponentFeedbackPanel-Igor On 10/4/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: How can I put a second FeedbackPanel in a For

Re: [Wicket-user] mailing list problems

2006-10-05 Thread Gwyn Evans
Yes - Anyone sending from a GMail account has been seeing bounces for a while now, and it's also been extra quiet for a little bit now, but there's just been what looks like a flood of backlogged messages through, so let's see if I can now send to it (from GMail)... /Gwyn On 04/10/06, Korbinian B

Re: [Wicket-user] Wicket validation

2006-10-05 Thread Igor Vaynberg
there have been other threads about this, please search the archives. what it comes down to is thislet you panel implement some interface that has a validate methodsubclass the form, override form.process() and change it to process() { super.process(); visitChildren( visitor that looks for that int

Re: [Wicket-user] stop AjaxSelfUpdatingTimerBehavior programmatically ?

2006-10-05 Thread Igor Vaynberg
it wont be implemented until 1.3 because we cant break the api in 1.2i attached some code the the rfe tracker, so if you need it now go ahead and use that.-IgorOn 10/4/06, samyem <[EMAIL PROTECTED]> wrote: Has this been implemented yet? What's the current status?Ingram Chen wrote:>> Thanks! Igor, 

Re: [Wicket-user] Floating header on datatable

2006-10-05 Thread Igor Vaynberg
dont know if ti exists, to implement i guess you can always override the markup of the datatable and the headers toolbar and add whatever you need to make it float.-IgorOn 10/4/06, Renaut, Jonathan E CTR DISA GIG-CS <[EMAIL PROTECTED]> wrote: I would like to add a floating header to a da

Re: [Wicket-user] new initiative for a user guide

2006-10-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Stefan Kanev wrote: > Maybe I didn't express myself cleary, sorry. JPA is very cool and all, > but it requires jars that you have to download from Sun, because they > aren't distributed freely (thus ibiblio.org). This is a major problem It's not

Re: [Wicket-user] Wicket vs .net/ a friendly pat on wicket core developers shoulders

2006-10-05 Thread Igor Vaynberg
much appreciated by all of us im surethanks-IgorOn 10/4/06, Nino Wael <[EMAIL PROTECTED] > wrote: Hi   I've been using wicket for some 7 months or so now. As a consultant I've seen some different stuff. And in the last job I had, we used  ASP .net(1.1) . And I must say that wicket fee

Re: [Wicket-user] Fwd: modal window link from inside a repeater (ListView)

2006-10-05 Thread Scott Swank
Ugh.  Yes, that's it.  Now I feel ever so clever.Thank you.On 10/5/06, Erik van Oosten <[EMAIL PROTECTED] > wrote:Should it not be:listItem.add(new AjaxLink("openEditItem") { instead ofadd(new AjaxLink("openEditItem") {?A lot of e-mail does not come through somehow. BTW, not only gmail hasproblems.

Re: [Wicket-user] Empty Dynamic Images

2006-10-05 Thread Igor Vaynberg
make sure your servlet mapping ends with /* as in /myapp/*-IgorOn 10/3/06, Matthew Bourgeois <[EMAIL PROTECTED] > wrote: I am new to wicket and have enjoyed it alot so far. I am specifically interested in using Wicket with dynamic images.  I have tried to use the Wicket 1.2.2 examples as a guide

Re: [Wicket-user] Menu bar implementation

2006-10-05 Thread Igor Vaynberg
awesome, keep it up.-IgorOn 10/3/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: I have uploaded a first initial implementation of a menu bar to https://svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-extensions-menubar

Re: [Wicket-user] [tutorial] Wicket + Spring integration - revisited

2006-10-05 Thread igor.vaynberg
> * you have to keep your variables transient - very easy mistake to make, > otherwise big boo boo might happen if the dependency is serializable and > you > wont know until much later Why would you want your services serializable? because some services you are not in control of, they come from o

Re: [Wicket-user] new initiative for a user guide

2006-10-05 Thread Stefan Kanev
Maybe I didn't express myself cleary, sorry. JPA is very cool and all, but it requires jars that you have to download from Sun, because they aren't distributed freely (thus ibiblio.org). This is a major problem with Maven, since this is what Maven does - gets the publicly available jars for you, so

Re: [Wicket-user] Wicket validation

2006-10-05 Thread Alessandro Lombardi
Hi all, this is my first post on this list... Coming to your question, afaiu, you need cross validation over underlying model (in OO sense, not only wicket sense); and this model is probably reused as well as the panel. The first thing that i note is that you should move your logic over the dom

Re: [Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Korbinian Bachl
Hi Eelco, you watch the first 2 lines in the server log or you can get the config value in the app class... Regards > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Erik van Oosten > Gesendet: Donnerstag, 5. Oktober 2006 08:41 > An: W

Re: [Wicket-user] License for CMS (components)

2006-10-05 Thread Ted Roeloffzen
We want to keep it open source, but there are so many different licenses to choose from.TedOn 10/3/06, Johan Compagner < [EMAIL PROTECTED]> wrote:can they really do that?I think you can make a close source project on top of it. But shouldn't the wicket part, that is written by all of us, still be

[Wicket-user] Database localized resources

2006-10-05 Thread Yozhik
Hi, All! Does anybody know the proper way to make localized string resources, that would be stored in database? I've tried to implement the IPropertiesFactory to make it load strings from DB, but the IProperties.get() method must return value of wicket.resource.Properties class. And the Constru

Re: [Wicket-user] Development mode?

2006-10-05 Thread Juergen Donnerstag
if (DEVELOPMENT.equalsIgnoreCase(configurationType)) { log.info("You are in DEVELOPMENT mode"); getResourceSettings().setResourcePollFrequency(Duration.ONE_SECOND); getDebugSettings().setCompone

Re: [Wicket-user] Is there a forum implement by wicket and open source?

2006-10-05 Thread Juergen Donnerstag
wicket-example is usually a very good start for people who which to study the source code to learn how Wicket works. Juergen On 10/3/06, deafwolf <[EMAIL PROTECTED]> wrote: > Hello, > > I've read the code of woogle(http://woogle.billen.dk), > I found that there're two markup in the WoogleBasePage

Re: [Wicket-user] AjaxSubmitButton don't working with

2006-10-05 Thread Stefan Kanev
Sorry, was very sleepy - a stupid mistake. I will send my bugfix within few hours. - 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

[Wicket-user] Floating header on datatable

2006-10-05 Thread Renaut, Jonathan E CTR DISA GIG-CS
Title: Floating header on datatable This email seems to have been eaten while the mailing list was down yesterday.  If you receive this twice, I apologize. I would like to add a floating header to a datatable.  That is, if there are too many rows in the table to be seen on the screen at a ti

Re: [Wicket-user] License for CMS (components)

2006-10-05 Thread Philip A. Chapman
Johan, It would still remain open.  Think of the closed-source version as a branch of the open-source software that is maintained by that un-named company.  Of course, they'd have to deal with the headache of keeping their own branch updated with the latest patches and such (or just go their o

Re: [Wicket-user] [tutorial] Wicket + Spring integration - revisited

2006-10-05 Thread Leszek Gawron
Frank Bille wrote: > Hey Leszek > > Looks good. If you have time for it couldn't you turn this into a wiki? > In that way it's easier for users to find this. > > http://www.wicket-wiki.org.uk/wiki No problem. Since my last post I have found the proper (I hope

Re: [Wicket-user] new initiative for a user guide

2006-10-05 Thread Korbinian Bachl
Hi,   can you tell me more about what isnt working?   Im quite new to JPA, but the interesting things is that everything i tried worked like a charm...   Regards Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Stefan KanevGesendet: Montag, 2. Oktober 2006 18:

Re: [Wicket-user] Is there a forum implement by wicket and open source?

2006-10-05 Thread Philip A. Chapman
Deafwolf, I am not aware of a forum built in wicket.  There is always the wicket examples, http://wicketframework.org/Examples.html and the wicket wiki, http://www.wicket-wiki.org.uk/wiki/index.php/Main_Page .  Feel free to peruse bugeater's code at https://developer.berlios.de/projects/bugeat

Re: [Wicket-user] License for CMS (components)

2006-10-05 Thread Upayavira
Johan Compagner wrote: > can they really do that? > > I think you can make a close source project on top of it. > But shouldn't the wicket part, that is written by all of us, still be open? Someone can take ASL licensed code, and make a closed source project from it. They cannot use the Wicket n

Re: [Wicket-user] new initiative for a user guide

2006-10-05 Thread Stefan Kanev
I'm thinking with starting from a user guide to a sample app and then continuing with a reference guide. I would like to start simple, and if I see I can handle it, I'll start writing a reference manual - Take Surveys. Earn Cas

Re: [Wicket-user] NullPointerException in ListView

2006-10-05 Thread kevinr
Thanks for your reply. Actually I figured out what was wrong but hadn't yet written a followup response. The ListView was part of a panel that was getting attached to the page during the ConfigureResponse method. I had thought the configure response method would be a good entry point to swap panel

Re: [Wicket-user] Fwd: modal window link from inside a repeater (ListView)

2006-10-05 Thread Erik van Oosten
Should it not be: listItem.add(new AjaxLink("openEditItem") { instead of add(new AjaxLink("openEditItem") { ? A lot of e-mail does not come through somehow. BTW, not only gmail has problems. Have fun, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ ---

Re: [Wicket-user] ajax refresh on date picker

2006-10-05 Thread Matej Knopp
This is very unfortunate. I'm not able to reproduce the stack overflow problem even with huge ajax responses. Can you plese replace the processNext method with this: processNext: function() { if (this.current < this.functions.length) { var f = this

[Wicket-user] Wicket validation

2006-10-05 Thread Gennadiy . Vasilevskiy
Hello All, I have a following question: I know how we can assign validators to the form components and how we can have the validation defined on the form level. But here is a problem: I have a component that is a simple panel. This component is reused all over the place. It needs to have some

[Wicket-user] Indicator at DropDownChoice

2006-10-05 Thread Konstantinos Lazouras
Hi,I use two linked DropDownChoice components, just like the linked select boxes example. When the first choice is made, I go back to db to get the choices for the second select, but this takes a few seconds. I 'm trying to put an indicator next to the second select box while this happens, but it d

Re: [Wicket-user] Second feedbackPanel (Wicket 2)

2006-10-05 Thread Ernesto Reinaldo Barreiro
Hi Stefan, Preciselly yesterday I posted a couple of messages regarding the feedback messages panel (in Wicket 2.0). My problem is not that I want a second panel but that I want to have my own type of panels (showing more information than it is provided now). One of the problems I found is the o

[Wicket-user] lists.sourceforge

2006-10-05 Thread Stefan Lindner
What happens to Messages goint to [EMAIL PROTECTED] Are they crossposted to nabble and vice versa? I saw nearly now mailing list activity in the last days, not a single message on Oct. 4. Stefan Lindner -- View this message in context: http://www.nabble.com/lists.sourceforge-tf2386771.html#a665

[Wicket-user] How to find Wicket mode (Production/Development )?

2006-10-05 Thread Erik van Oosten
[re-post due to mail-list problems.] Hi, How do I find out in which mode Wicket is running (development/production)? Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Ear

[Wicket-user] Second feedbackPanel (Wicket 2)

2006-10-05 Thread Stefan Lindner
How can I put a second FeedbackPanel in a Form and feed this second FeedbackPanel with custom feedback messages? I can't overwrite getCurrentMessages, it is final. Stefan Lindner -- View this message in context: http://www.nabble.com/Second-feedbackPanel-%28Wicket-2%29-tf2386721.html#a6653368 S

Re: [Wicket-user] Pro Wicket book review

2006-10-05 Thread karthik Guru
Hi All,Quoting from the review - > The AJAX examples cover the basics (which are quite good in Wicket) but a lot is left to be discovered. Can you give me some pointers, especially those who have read this section, as to what all should have gone into this section - I shall try covering those in m

Re: [Wicket-user] stop AjaxSelfUpdatingTimerBehavior programmatically ?

2006-10-05 Thread samyem
Has this been implemented yet? What's the current status? Ingram Chen wrote: > > Thanks! Igor, I have created a RFE for this item. > > If you have time to release some code snips, it is great helpful ! > > On 8/12/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: >> >> no it is not possible. i ac

[Wicket-user] Second feedbackPanel (Wicket 2)

2006-10-05 Thread Stefan Lindner
How can I put a second FeedbackPanel in a Form and feed this second FeedbackPanel with custom feedback messages? I can't overwrite getCurrentMessages, it is final. Stefan Lindner - Take Surveys. Earn Cash. Influence the Futur

[Wicket-user] SelfUpdating until a certain condition holds true.

2006-10-05 Thread Martin Funk
Hi, my webapp asynchronously kicks of a a process that takes some (1-2 minutes) time till a result is provided. After the kickoff and before the result is available I'd like the Page to reload itself untill the result is there, stopping the reload. So far I tried two approaches. First I worked wi

Re: [Wicket-user] Phonebook Shades integration

2006-10-05 Thread Gwyn
> Browsing the repo, I see the src dir now. So my guess is that downloaders of the WAR aren't really meant to use > the maven pom which is in the WAR. No, it was automatically added by maven, I think, but there was no particular reason to have the source under classes/ other than it was all I ha

Re: [Wicket-user] Database Integration With Wicket

2006-10-05 Thread Leszek Gawron
igor.vaynberg wrote: > if you want to use straight jdbc that should be easy. what you need is a > connection pool - there is one in apache commons. > > you store the connection pool reference in your Application subclass. > whether you create it there or pull it out of jndi is up to you. > > then

Re: [Wicket-user] mailing list problems

2006-10-05 Thread Korbinian Bachl
Eelco, does the mailinglist again have problems ??? i havent received a single mail for over 24 hours now or is the list dead??? Regards, Korbinian > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Im Auftrag > von Eelco Hillenius > Gesendet: Sonn

[Wicket-user] AJAX Edit In Place Label

2006-10-05 Thread Ryan Sonnek
Title: AJAX Edit In Place Label I'm having issues with the mailing list, so I hope this makes it through... I've just finished a first version of an Ajax Edit In Place Label.  This implementation uses scriptaculous and is similar to something found on flickr.  I've added it to the wicket-stu

[Wicket-user] Floating header on datatable

2006-10-05 Thread Renaut, Jonathan E CTR DISA GIG-CS
Title: Floating header on datatable I would like to add a floating header to a datatable.  That is, if there are too many rows in the table to be seen on the screen at a time, and the user scrolls down, the header should scroll, too, so the header is always visible and still retains its funct

[Wicket-user] wicket.response.StringResponse not serializable (Wicket 2)

2006-10-05 Thread Jan Vermeulen
I changed the sessionStore of my application (using Wicket 2) to be 'wicket.protocol.http.HttpSessionStore' i.s.o. 'wicket.protocol.http.SecondLevelCacheSessionStore' (because I use methods in the AccessStackPageMap that are not supported in the pageMap of SecondLevelCacheSessionStore). When

[Wicket-user] Development mode?

2006-10-05 Thread Erik van Oosten
Hi, How do I find out in which mode Wicket is running (development/production)? Regards, Erik. -- Erik van Oosten http://www.day-to-day-stuff.blogspot.com/ - Take Surveys. Earn Cash. Influence the Future of IT Join

[Wicket-user] AjaxSubmitButton don't working with

2006-10-05 Thread Stefan Kanev
I found out that AjaxSubmitButton is not working with html tags. I didn't see a reason why not to allow that, so I tried to create a patch, but I failed miserably. Can anyone please look into it, or at least give me a hint what I'm doing wrong with my patch. I'm trying to put this chunk of code:

[Wicket-user] Portlet Problem? Page > TabbedPanel > Panel[4]

2006-10-05 Thread Manuel Barzi
Dear Janne, I have detected another issue, and I am not quite sure if it has to be with Wicket or LifeRay, as I see no exceptions, but I can see a little detail. I tell you: I have the following View composition: Page > TabbedPanel > Panel[4] When testing this View in standalone WebPage impl it

Re: [Wicket-user] wicket-phonebook maven question

2006-10-05 Thread Gwyn Evans
Yes, it's a Maven (Maven2) app, so you should really use that, or at least make sure that it works even if you want to add an Ant build.xml. It should build via "mvn package" and run stand-alone via "mvn jetty:run" or ""mvn jetty:run-war" but yes, you need Maven2 (which is a lot better than Maven1

Re: [Wicket-user] Portlet Problem? Page > Panel > Form > DataPicker

2006-10-05 Thread Janne Hietamäki
Yes, this problem has something to do with datepicker doing header contributions, I'll try to reproduce.. Janne On Oct 4, 2006, at 1:12 PM, Manuel Barzi wrote: > Watching the markup generated by the WebPage version, I find that > Wicket does automatically inserts the following scripts to the

[Wicket-user] resend Wicket vs .net/ a friendly pat on wicket core developers shoulders

2006-10-05 Thread Nino Wael
Hi   I’ve been using wicket for some 7 months or so now. As a consultant I’ve seen some different stuff. And in the last job I had, we used  ASP .net(1.1) . And I must say that wicket feels a lot like an upgrade in conceptuality and userfriendlyness. It’s a lot simpler to create your own

Re: [Wicket-user] Portlet Problem? Page > Panel > Form > DataPicker

2006-10-05 Thread Manuel Barzi
Watching the markup generated by the WebPage version, I find that Wicket does automatically inserts the following scripts to the Page, in order to provide html-side support for the DatePicker: ... blah ...

Re: [Wicket-user] wicket-phonebook maven question

2006-10-05 Thread Juergen Donnerstag
Yes, it is maven2 Juergen On 10/1/06, Geoff hendrey <[EMAIL PROTECTED]> wrote: > Hi, > > Couple questions around adding Shades to the phonebook example. Are > downloaders supposed to build the phonebook using Maven? I just threw > together an Ant build script after I downloaded the phonebook e

[Wicket-user] Portlet Problem? Page > Panel > Form > DataPicker

2006-10-05 Thread Manuel Barzi
Dear Sirs, Janne, I have a PortletPage with the following composition: PortletPage > Panel > Form > DataPicker When testing this View in standalone mode (Wicket WebApp - WebPage), it works. But when testing it as a portlet in LifeRay Portal, I get the following error: --

[Wicket-user] Give a dynamic generated image a "pretty" name

2006-10-05 Thread Frank Bille
Hey allI have an Image with a custom RenderedDynamicImageResource on it. This works fine, but my problem is that *sometimes* (haven't yet been able to determine the exact cause) FireFox displays the wrong image (displays one of the other loaded images on that page). The situation occours only if I

  1   2   >