Re: [Wicket-user] IntelliJ IDEA Wicket Plugin

2006-12-09 Thread Nick Heudecker
Yeah, wicket-stuff is probably the place for this. Thanks for responding so quickly. On 12/9/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: On 12/9/06, Anders Holmbech Brandt <[EMAIL PROTECTED]> wrote: > So I see two scenarios. I open up my own subversion and add all the users > who want to p

Re: [Wicket-user] Review: Wicket course

2006-12-09 Thread Stefan Lindner
Maybe we could provide the wicket world with an online demo of our Wicket based application. It is an application for public health care organisations in germany, especially post op. pain management. The application runs on a tablet pc (with a local database that synchronizes with a central data

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-12-09 Thread Igor Vaynberg
i dont really see the point. i think most usecases are using sortabledataprovider, at least i think 99% for the code i wrote. -igor On 12/9/06, Johan Compagner <[EMAIL PROTECTED]> wrote: ahh ok we could introduce that. I don't know what is easier.. in eclipse: cursor on the new IDataProvider

Re: [Wicket-user] Review: Wicket course

2006-12-09 Thread Eelco Hillenius
That's great to hear. We can definitively use a couple more public available success stories here http://cwiki.apache.org/WICKET/user-stories.html , so if you have anything you like to and are allowed to share, that'd be awesome. Eelco On 12/9/06, Flemming Boller <[EMAIL PROTECTED]> wrote: > Hi

Re: [Wicket-user] Programmatically set readonly property of form component

2006-12-09 Thread Johan Compagner
i just see this old post. Doesn't this work? it should.. johan On 11/21/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: On 11/21/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > in 2.0 instead of > > add(new SimpleAttributeModifier("foo", "bar") > > you can just do > > getMarkupAttributes().put(

[Wicket-user] passion haughty

2006-12-09 Thread Beatrix W. Carlton
Has the Bush Administration done enough to ease the suffering of the wealthiest Americans? The news is provided by posters of the forum and is subject to review before publication to ensure the content is within socially acceptable standards. After all, all the truly godly will be in heaven and Jon

[Wicket-user] Review: Wicket course

2006-12-09 Thread Flemming Boller
Hi Wicket users. We had Matej Knopp come to our workplace in Denmark and give a course in wicket this week. The course was a 3-day course where we in day 1 and 2 went through wicket basic component (and AJAX, which is really simple in Wicket). And day 3 look at the more advanced components in wi

Re: [Wicket-user] Mixing wicket, webwork, spring and acegi.

2006-12-09 Thread Martijn Dashorst
I don't have used WW nor acegi, but I think you can just put the user credentials into the httpsession and use that from either framework. It is not a sexy solution, but should work. Martijn On 12/9/06, Thomas R. Corbin <[EMAIL PROTECTED]> wrote: > > We've got a site that was started in webwork a

[Wicket-user] Mixing wicket, webwork, spring and acegi.

2006-12-09 Thread Thomas R. Corbin
We've got a site that was started in webwork and we're using acegi/spring for authentication. We'd like to move to wicket, but we're not sure how well (or how) to mix authentication.I just want to be sure that once the user has logged in (using whatever means), that they won't have to re

Re: [Wicket-user] Drag and drop

2006-12-09 Thread Vincent Demay
Yes there is a such feature on dojo-contrib but it is not released yet. I waiting for wicket 1.3 and wicket 2.0 release to make a distribution of all dojo feature. You can see a live demo here : http://www.demay-fr.net:8080/Wicket-start/app Dnd is available on wicket-dojo-contrib trunk -- Vincent

Re: [Wicket-user] IntelliJ IDEA Wicket Plugin

2006-12-09 Thread Martijn Dashorst
On 12/9/06, Anders Holmbech Brandt <[EMAIL PROTECTED]> wrote: > So I see two scenarios. I open up my own subversion and add all the users > who want to participate and maybe create a small forum (using some available > software for that) or maybe work at getting the source into wicketstuff on > sou

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-12-09 Thread Johan Compagner
ahh ok we could introduce that. I don't know what is easier.. in eclipse: cursor on the new IDataProvider -> CTRL-1 and done. johan On 12/9/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I mean that we can add the AbstractDataProvider as a means for those that just implemented the interface

Re: [Wicket-user] IntelliJ IDEA Wicket Plugin

2006-12-09 Thread Anders Holmbech Brandt
Hello Nick, Saturday, December 9, 2006, 9:56:52 AM, you wrote: > Hi, Does anyone know if the Wicket plugin for IDEA has been open-sourced?  I'd like to make some updates to it.   Thanks, Nick It is completely open source (apache2 license) as it was submitted to the Intellij Idea

Re: [Wicket-user] PagingNavigator & (lazy) Session // BUG?

2006-12-09 Thread Korbinian Bachl
Hi, i posted this underlying text ago, and missed to write in it that i dont use the default but a BookmarkablePages (with index-strategy) PagingNavigator. I assuemed that sth. was wrong with this but could now track it down to a strange wicket behaviour. If you have a page that has following p

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-12-09 Thread Martijn Dashorst
I mean that we can add the AbstractDataProvider as a means for those that just implemented the interface ad-hoc. In our application have on several occaisions the following: IDataProvider provider = new IDataProvider() { ... }; This code will break with the change. Having AbstractDataProvider ar

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-12-09 Thread Johan Compagner
You mean that developers can have such a thing? because in the core we dont have a AbstractDataProvider. Also we have some code breaks but in wicket 2.0 IDataProvider already extended IDetachable a long time now So we are then in sync with 2.0 on that api level. That is a pro for me. johan On

Re: [Wicket-user] IntelliJ IDEA Wicket Plugin

2006-12-09 Thread Dirk Markert
Nick, as far as I know the sources are attached in the jar. Dirk 2006/12/9, Nick Heudecker <[EMAIL PROTECTED]>: Hi, Does anyone know if the Wicket plugin for IDEA has been open-sourced? I'd like to make some updates to it. Thanks, Nick -

Re: [Wicket-user] SortableDataProvider, size() & iterator(int first, int count), Correct execution order?

2006-12-09 Thread Martijn Dashorst
I am pro explicit contracts, but for dataproviders I think the general use would be stateless, so no detach behavior necessary. If we let IDataProvider extend IDetachable, then we have a lot of code breaks. Though these can easily be resolved by extending the following class instead of directly im

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-09 Thread Johan Compagner
Thanks for your reply. I have some follow up questions to your respond: - 1. Do you mean ListChoice.onSelectionChange is not invoked instead of ListChoice.onchange which is on client side? ListChoice.onSelectionChange is not an ajax thing. And when you have both specified i think the ajaxbe

Re: [Wicket-user] Help with AjaxFormComponentUpdatingBehavior

2006-12-09 Thread TH Lim
Thanks for your reply. I have some follow up questions to your respond: - 1. Do you mean ListChoice.onSelectionChange is not invoked instead of ListChoice.onchange which is on client side? 2. What and when do I use getCallbackUrl()? 3. Am I right to presume the implementation in AjaxFormCompone

[Wicket-user] IntelliJ IDEA Wicket Plugin

2006-12-09 Thread Nick Heudecker
Hi, Does anyone know if the Wicket plugin for IDEA has been open-sourced? I'd like to make some updates to it. Thanks, Nick - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'