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

2006-10-05 Thread Leszek Gawron
igor.vaynberg wrote: this is nice. what i do like about it * you can inject anything anywhere what i dont like is * post constructor injection like youve mentioned - delegate or not it still sucks, a different pointcut is needed yes .. that's ugly. I have posted a question on spring

[Wicket-user] Menu bar implementation

2006-10-05 Thread Stefan Lindner
I have uploaded a first initial implementation of a menu bar to https://svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-extensions-menubar https://svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-extensions-menubar Please not the following items 1. Only one menu bar per page 2.

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

2006-10-05 Thread Pierre-Yves Saumont
I changed the value to 10. It does not change anything. I don't know if it can be usefull, but I added the line: alert(this.depth); before line 120. When loading the Ajax response that contains the datepicker, this alert is displayed 10 times with values 0 to 9. Pierre-Yves Matej Knopp a

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

2006-10-05 Thread Scott Swank
I'll try this again and see whether the mail list is feeling friendlier this morning than it was Saturday.-- Forwarded message --From: Scott Swank [EMAIL PROTECTED]Date: Sep 30, 2006 3:02 PMSubject: modal window link from inside a repeater (ListView)To:

Re: [Wicket-user] Problem with RepeatingView in trunk

2006-10-05 Thread Johan Compagner
what you do is illegal it shouldnt also work in 1.2what you should do is: RepeatingView r=new RepeatingView();WebMarkupContainer item=new WebMarkupContainer(r, r.newChildId());new Label(item, view..new Label(item, create,...johan On 9/27/06, Alberto Bueno [EMAIL PROTECTED] wrote: Hi,In Wicket

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

2006-10-05 Thread Eelco Hillenius
Yeah. I'm using a similar patter for non-Wicket cases too. I actually prefer this to wiring using XML. Eelco On 10/3/06, Joni Freeman [EMAIL PROTECTED] wrote: Yes, it works. I use it in many places. Joni On Tue, 2006-10-03 at 16:28 +0200, Matej Knopp wrote: But it should. I don't see

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

2006-10-05 Thread Scott Swank
Hello again.I am trying to open a modal window from within a repeater. In the example application Library, my goal is equivalent to opening BookDetails in a ModalWindow instead of going to a separate page. All of the below works perfectly if I place the html anchor outside of the html table and if

Re: [Wicket-user] Redeploy error with JBoss and Tomcat

2006-10-05 Thread Johan Compagner
You change the signature somehow of the Session metadata field.So it can't restore the state that tomcat did save to disk.This is something that can't be helped much if you really alter structures/classes.It will then be much harder to just restore the session that where stored on disk when tomcat

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

2006-10-05 Thread Johan Compagner
- o - Gotchas - o -Every programming solutions got one. This one also. With current @Configurable implementation services get injected AFTER the injectee iscreated (after all constructors got invoked). That means this won't work: public class LeaguePage extends BaseSquasherPage { private

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

2006-10-05 Thread Stefan Kanev
I'm a big fan of JPA myself, but a JPA application is not easy to distribute since the akward policy Sun has for their enterprise jars. Thus I cannot create an application that is as easily runned localy as mvn jetty:run - I'm having the same problem with the commercial projects I'm doing and with

Re: [Wicket-user] Ajax submit of ListView

2006-10-05 Thread Frank Bille
Hey ChuckOn 10/2/06, ChuckDeal [EMAIL PROTECTED] wrote: I have the Ajax submit for the radio buttons working, but my problem is withstoring the value in the associated date field.When you say this what do you mean by working? You are using the AjaxFormSubmitBehavior, right? When I use the

Re: [Wicket-user] NullPointerException in ListView

2006-10-05 Thread Johan Compagner
do you have any code sample to share?johanOn 10/3/06, kevinr [EMAIL PROTECTED] wrote: I'm receiving a null pointer exception within the ListView component. TheListView is trying to render null ListItems. From what I can see,populateItem isn't even being called. I can't tell if this is a bug, or if

Re: [Wicket-user] CheckGroupSelector with CheckBox

2006-10-05 Thread Johan Compagner
can't you override:protected boolean wantOnSelectionChangedNotifications() { return false; }of CheckGroup?johanOn 9/27/06, Decebal Suiu [EMAIL PROTECTED] wrote: Can I use CheckGroupSelector with CheckBox (insteadCheck) ?Because I want to be notified when a selection waschanged

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

2006-10-05 Thread Frank Bille
Hey LeszekLooks 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 FrankOn 10/3/06, Leszek Gawron [EMAIL PROTECTED] wrote: Hello,I just wanted to share another way of injecting spring services

[Wicket-user] Refreshing problem with ajax component

2006-10-05 Thread Marc-Andre Houle
It seem's that I have a problem in my application similar to those one : http://www.nabble.com/AjaxTabbedPanel-is-broken-%28wicket-1.2.2%29-tf2176204.html#a6016987 https://sourceforge.net/tracker/?func=detailatid=684975aid=1549248group_id=119783 My problem look like this : I open a page and load

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

2006-10-05 Thread Johan Compagner
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? johan On 9/26/06, Martijn Dashorst [EMAIL PROTECTED] wrote: It is true that a company can take the source code and make it closedand sell it

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

2006-10-05 Thread James McLaughlin
Strange. Virtually all my models do this and it works perfectly. I think you are missing the id parameter in your SpringBean declaration. Maybe that is killing you.jimOn 10/3/06, Leszek Gawron [EMAIL PROTECTED] wrote: Joni Freeman wrote: Yes, it works. I use it in many places. JoniI have just

[Wicket-user] Empty Dynamic Images

2006-10-05 Thread Matthew Bourgeois
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 on how to do this. When I run the Wicket 1.2.2 examples on my own machine both of the dynamic images in the image example

Re: [Wicket-user] maven2 for phonebook with Shades

2006-10-05 Thread Igor Vaynberg
On 10/2/06, Geoff hendrey [EMAIL PROTECTED] wrote: OK, yes I needed to have maven 2.Couple things though.1) the src path is wrong in pom.xml (I will change that)how do you figure?sources are in src/java and src/conf and this is in pom.xml sourceDirectorysrc/java/sourceDirectory

Re: [Wicket-user] repose of question

2006-10-05 Thread Igor Vaynberg
phonebook is built using maven2-IgorOn 10/2/06, Geoff hendrey [EMAIL PROTECTED] wrote: Hi,Couple questions around adding Shades to the phonebookexample.Are downloaders supposed to build the phonebook using Maven? I just threw together an Ant build script after I downloaded thephonebook example,

[Wicket-user] Fwd: edit in place label

2006-10-05 Thread Ryan Sonnek
trying again. looks like the first email was blocked.-- Forwarded message --From: Ryan Sonnek [EMAIL PROTECTED]Date: Oct 2, 2006 10:44 AMSubject: edit in place labelTo: wicket-user@lists.sourceforge.netI'm trying to build out a new wicket component on top of the scriptaculous edit

Re: [Wicket-user] Creating Panels inside of Loop (Wicket 2)

2006-10-05 Thread Johan Compagner
the LoopItem is the parent of the panelnew MenuPanel(item, menu, menu.getModel(), menu.getMenuItems());On 9/29/06, Stefan Lindner [EMAIL PROTECTED] wrote:I have a Panel that looks like this (html) hr /ul id=nav wicket:id=menus !--Place menus here-- span wicket:id=menuPlace menus here/span/ul hr

[Wicket-user] edit in place label

2006-10-05 Thread Ryan Sonnek
I'm trying to build out a new wicket component on top of the scriptaculous edit in place label. The piece that's confusing me is how to submit this html form that was constructed outside of wicket. The in place editor takes a url parameter to post the data to. does anyone have a recommendation on

Re: [Wicket-user] Help with wicket-bench preview path

2006-10-05 Thread Juergen Donnerstag
Links: http://www.laughingpanda.org/mediawiki/index.php/Wicket_Bench http://www.laughingpanda.org/jira/browse/WB http://www.laughingpanda.org/~inhuman/wicket-bench/docs/features-0.4.html Juergen On 10/1/06, Guy Davis [EMAIL PROTECTED] wrote: Hi all, Sorry if this list isn't the right place

Re: [Wicket-user] Ajax submit of ListView

2006-10-05 Thread Igor Vaynberg
see how formcomponentupdatingbehavior works for ideas-IgorOn 10/2/06, ChuckDeal [EMAIL PROTECTED] wrote: I have been reading a bunch of old posts about using AJAX with radio groupand list view, etc, but I haven't found my exact scenario. What I would like to have is a List of statuses (radio

Re: [Wicket-user] WYSIWYG developing

2006-10-05 Thread Johan Compagner
i haven't looked at it (design time api) yet. But what would be generated?The properties like location and size are CSS. But adding for example validators should generate java code.johan On 9/30/06, p.jasson [EMAIL PROTECTED] wrote: Hi. I would like to integrate wicket framework with Sun Java

Re: [Wicket-user] Phonebook Shades integration

2006-10-05 Thread Igor Vaynberg
On 10/3/06, Geoff hendrey [EMAIL PROTECTED] wrote: Hi Igor,If you download the 1.2 phonebook,it contains no src directory. It is simply a war file, and the src files are inside WEB-INF/classes. Browsing the repo, I see the src dir now. So my guess is that downloaders of the WAR aren't really meant

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

2006-10-05 Thread deafwolf
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 - Take Surveys. Earn Cash. Influence the

Re: [Wicket-user] Menu bar (first version)

2006-10-05 Thread Johan Compagner
you could add this in the Wicket-Stuff sourceforge project if you want?johanOn 9/29/06, Stefan Lindner [EMAIL PROTECTED] wrote:I completed a first test version for a menu bar. It is based upon an article on A List Apart (http://www.alistapart.com/articles/dropdowns)The current implementation has

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

2006-10-05 Thread Iman Rahmatizadeh
hmmm, is it going to be some sort of a reference doc for wicket, or just a user guide to writing a sample app ? On 10/2/06, Eelco Hillenius [EMAIL PROTECTED] wrote:yeah, maybe it doesn't need that. Pet store is kind of a best practices project, so I figured it might get in there. Databinder as an

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

2006-10-05 Thread deafwolf
Hello, I've read the code of woogle(http://woogle.billen.dk), I found that there're two markup in the WoogleBasePage.html, one is wicket:child, the other is wicket:extend, so I think that there're many feature not show in wicket's example. I wish to read some code of a project that implement by

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-05 Thread Frank Bille
Yes please try to share some code with shows where the problem exatly is.FrankOn 10/2/06, kurt heston [EMAIL PROTECTED] wrote:Am I being too vague here to get an answer?Do I need to post my code? kurt heston wrote: All I did was switch from wicket-1.2-rc3.jar to wicket-1.2.2.jar and my SignIn

Re: [Wicket-user] WYSIWYG developing

2006-10-05 Thread Igor Vaynberg
there have been a couple of threads about this and some work done for netbeans integration, search our mailing list archives. but what you are talking about imho is not really possible (at least not as well as jsf which was designed with this particular purpose in mind) because wicket components

Re: [Wicket-user] Redeploy error with JBoss and Tomcat

2006-10-05 Thread Juergen Donnerstag
Your websession seems to add a MetaData entry which is not serializable. Juergen On 10/2/06, Henk Laracker [EMAIL PROTECTED] wrote: Hello, After i have implemented my own Websession I get the following error when I redeploy the war file ERROR [ManagerBase] Exception loading sessions from

[Wicket-user] Empty Dynamic images

2006-10-05 Thread Matt Bourgeois
I am new to wicket but have enjoyed it alot so far. I am interested in using Wicket with dynamic images. I have tried to use the Wicket 1.2.2 examples as a guide on how to use dynamic image resources. When I run the Wicket 1.2.2 examples on my own machine both the dynamic images on the image

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-05 Thread Igor Vaynberg
yes you are too vague, and another problem is that this list has been down because of sf.net for a while.-IgorOn 10/2/06, kurt heston [EMAIL PROTECTED] wrote: Am I being too vague here to get an answer?Do I need to post my code?kurt heston wrote: All I did was switch from wicket-1.2-rc3.jar to

Re: [Wicket-user] progress indicator

2006-10-05 Thread Eelco Hillenius
And when do you want to block exactly? When a certain Ajax action is executed, which may take some time to complete? And you would do some Ajax polling to track the progress? The easiest way in that case would be to re-render the form with the form components disabled, and when the polling

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

2006-10-05 Thread Leszek Gawron
reposting... igor.vaynberg wrote: this is nice. what i do like about it * you can inject anything anywhere what i dont like is * post constructor injection like youve mentioned - delegate or not it still sucks, a different pointcut is needed yes .. that's ugly. I have posted a question

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

2006-10-05 Thread Nino Wael
Hi Ive been using wicket for some 7 months or so now. As a consultant Ive 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. Its a lot simpler to create your own

Re: [Wicket-user] updating feedback panel from onSubmit method of AjaxSubmitLink

2006-10-05 Thread Igor Vaynberg
final FeedbackPanel fp=new FeedbackPanel(.);fp.setOutputMarkupId(true);new AjaxSubmitLink(..) { onSubmit(AjaxRequestTarget t) { t.add(fp); }}-IgorOn 10/2/06, Jaime De La Jara [EMAIL PROTECTED] wrote: In the phonebook app there is an EditContactPage that subclass BasePage that has a feedback

Re: [Wicket-user] NullPointerException in ListView

2006-10-05 Thread Eelco Hillenius
Looks to me like you have nulls in your list. ListView isn't lenient enough to handle such lists, so you should purge the list; get rid of the nulls. Eelco On Oct 3, 2006, at 5:36 PM, kevinr wrote: I'm receiving a null pointer exception within the ListView component. The ListView is

Re: [Wicket-user] updating feedback panel from onSubmit method of AjaxSubmitLink

2006-10-05 Thread Eelco Hillenius
In the phonebook app there is an EditContactPage that subclass BasePage that has a feedback panel. To the EditContactPage I added an AjaxSubmitLink that adds an address to a contact, I need to validate the address info in the onSubmit method so if it's invalid display a message in

Re: [Wicket-user] Ajax submit of ListView

2006-10-05 Thread Eelco Hillenius
Embed those components in a form, and work with AjaxSubmitButton/ AjaxSubmitLink. The onSelectionChange event really only makes sense when you don't use ajax. In this case, it's much better to process your form as a whole, but with ajax. Eelco On Oct 2, 2006, at 6:08 PM, ChuckDeal wrote:

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

2006-10-05 Thread Stefan Kanev
Does the same go for Hibernate? Maybe create an in-memory domain model, that doesn't persist in any kind and use it instead? This would simplify the sample application and put the focus to Wicket instead. It might be especially useful to people, who are not familiar with Spring and Hibernate.

[Wicket-user] embedding a wicket page in a third party page

2006-10-05 Thread Dipu
Hi, I there any way to embed/include a wicketpage in a third party jsp site ( with out using iframe)and do a form submit fromthere. In other words is there any way todo a post from a third party site to a wicket form. Kind regards Dipu

[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

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

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

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: head ... blah ... link href=/nt/caoc.css type=text/css

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

2006-10-05 Thread Nino Wael
Hi Ive been using wicket for some 7 months or so now. As a consultant Ive 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. Its a lot simpler to create your own

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

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,

[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

[Wicket-user] AjaxSubmitButton don't working with button

2006-10-05 Thread Stefan Kanev
I found out that AjaxSubmitButton is not working with button 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

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

[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

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: Sonntag,

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 you

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 had

[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

[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

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 actually

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

[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

[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.

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

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

[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

[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

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 =

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

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

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

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

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

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 http://www.wicket-wiki.org.uk/wiki No problem. Since my last post I have found the proper (I hope)

[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

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

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

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

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

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

[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

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

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:

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

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,

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

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] 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] 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.Have

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 feels

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

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

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

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

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 Form

  1   2   >