Re: [Wicket-user] maven problem

2006-10-06 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

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

2006-10-06 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

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

2006-10-06 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?

[Wicket-user] Confirming Gmail Issues

2006-10-06 Thread Ayodeji Aladejebi
This is to test if Gmail is still bouncing my mails...please can someone reply me if they got this? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share

Re: [Wicket-user] Confirming Gmail Issues

2006-10-06 Thread Ayodeji Aladejebi
great!!On 10/6/06, Dipu [EMAIL PROTECTED] wrote: reply !!! - Original Message - From: Ayodeji Aladejebi To: wicket-user@lists.sourceforge.net Sent: Friday, October 06, 2006 9:15 AM Subject: [Wicket-user] Confirming Gmail Issues This is to test if

Re: [Wicket-user] Confirming Gmail Issues

2006-10-06 Thread Manuel Barzi
... - 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 brief surveys -- and earn cash

[Wicket-user] Dynamic mount points

2006-10-06 Thread Jan Willem Janssen
Hi, Is it possible to define (dynamic) mount points based on the current user? For instance, one user can access /webapp/VisitorsOfToday, while another user cannot. Or is there another way to get such behaviour? Groet, -- Jan Willem Janssen, M.Sc. software engineer, Development

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Eelco Hillenius
You have to do a bit more work to achieve that, but it can be done. In your application, override protected IRequestCycleProcessor newRequestCycleProcessor() { new CompoundRequestCycleProcessor(new MyRequestCodingStrategy()); } MyRequestCodingStrategy should extend WebRequestCodingStrategy

[Wicket-user] Changing attribute on non-component tag

2006-10-06 Thread Arseny
Hello! I am still migrating my mind from Struts into Wicket:) I have a newbie question: In my component markup I need to dynamically change frames width: ... FRAMESET cols=20%, 80% ... In JSP I would write something like: ...FRAMESET cols=%= myView.framesWidth() %... What is a Wicket approach

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

2006-10-06 Thread Korbinian Bachl
Hi Stefan, as far as i know JPA is a big part of the new JEE5 world, so it will never drop out completely. And since it by the basics is just a description of interfaces and way to work (basically) the implementation you use isnt tied to sun. You may use Toplink if you want, or Hibernate or

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

2006-10-06 Thread Eelco Hillenius
There's also SharedResources#putClassAlias to shorten names for a couple of classes that might be an issue. Eelco On 10/5/06, Johan Compagner [EMAIL PROTECTED] wrote: you could play with: public final void mountSharedResource(final String path, final String resourceKey) so add one shared

Re: [Wicket-user] Changing attribute on non-component tag

2006-10-06 Thread Martijn Dashorst
frameset wicket:id=frameset... add(new WebMarkupContainer(frameset).add(new AttributeModifier(cols, new ReadOnlyModel() { ... }, true))); Martijn On 10/6/06, Arseny [EMAIL PROTECTED] wrote: Hello! I am still migrating my mind from Struts into Wicket:) I have a newbie question: In my

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

2006-10-06 Thread Stefan Kanev
I'm not really sure why you're giving me that JPA hype, as I already said I'm a big fond of using it and my motivations for evading it are different. But since Justin Lee gave me that repository, I think I can pull it out greatly.

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

2006-10-06 Thread Martin Funk
sorry that I crossposted this to wicket-dev too. Are you talking about AjaxPoller as described by Igor in: https://sourceforge.net/tracker/?func=detailatid=684978aid=1539101group_id=119783 That code doesn't seem to be in the repository yet. mf Martijn Dashorst schrieb: isComplete() returns

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

2006-10-06 Thread Eelco Hillenius
The easiest/ most obvious way is to use a(n i)frame and a bookmarkable page to start up the page. Or you can do your post to a bookmarkable page and get the request parameters out there manually. Are you sure you want to mix technologies like that though? Eelco On 10/4/06, Dipu [EMAIL PROTECTED]

Re: [Wicket-user] lists.sourceforge

2006-10-06 Thread Eelco Hillenius
Yeah, sourceforge had problems again. In the end, most messages are sent, including to nabble which indexes them. Eelco On 10/5/06, Stefan Lindner [EMAIL PROTECTED] wrote: What happens to Messages goint to [EMAIL PROTECTED] Are they crossposted to nabble and vice versa? I saw nearly now

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

2006-10-06 Thread Martijn Dashorst
No, but you can add the code to your project yourself. Martijn On 10/6/06, Martin Funk [EMAIL PROTECTED] wrote: sorry that I crossposted this to wicket-dev too. Are you talking about AjaxPoller as described by Igor in:

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Martijn Dashorst
Doesn't JBoss IDE start the jboss container in debug mode? We typically work with tomcat/jetty directly (tomcat sysdeo or jetty launcher plugin) Martijn On 10/6/06, craigdd [EMAIL PROTECTED] wrote: I'm using jboss 4.0.4, does anyone know how to configure it to reload changed classes? I want

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

2006-10-06 Thread Martin Funk
it's already running and humming, nice and smoovely in my project. I was just courious if you had a different solution in mind. Martijn Dashorst schrieb: No, but you can add the code to your project yourself. Martijn On 10/6/06, Martin Funk [EMAIL PROTECTED] wrote: sorry that I

[Wicket-user] About Custom Components

2006-10-06 Thread Ayodeji Aladejebi
In developing custom components whose effects/behaviour via third party _javascript_s depends really on the id of the component, i guess it wont be good wicket practice to do something like: component.add(new AttributeModifier(id,true,model)); //?does modifying a component id from code have any

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Jan Willem Janssen
Hi, You have to do a bit more work to achieve that, but it can be done. In your application, override protected IRequestCycleProcessor newRequestCycleProcessor() { new CompoundRequestCycleProcessor(new MyRequestCodingStrategy()); } MyRequestCodingStrategy should extend

Re: [Wicket-user] Problem with FormBorder and not visible components (in trunk)

2006-10-06 Thread Alberto Bueno
you have the the test case: public class BoxBorderTestPage_3 extends WebPage { private static final long serialVersionUID = 1L; private final ValueMap properties = new ValueMap(); /** * Construct. * * */ public BoxBorderTestPage_3() { Border

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread craigdd
I don't think debug mode in jboss allows the reloading of classes, i believe it it just for remote debugging. Martijn Dashorst wrote: Doesn't JBoss IDE start the jboss container in debug mode? We typically work with tomcat/jetty directly (tomcat sysdeo or jetty launcher plugin)

Re: [Wicket-user] Dynamic mount points *SOLVED*

2006-10-06 Thread Jan Willem Janssen
[about dynamic mount points] I finally succeeded into getting the behaviour I wanted. All I had to do was override addBookmarkablePageParameters() and check there if request.getPath() corresponds with one of the users' mount points, if so, I can do my thing, otherwise I let Wicket do his thing.

Re: [Wicket-user] Dynamic mount points *SOLVED*

2006-10-06 Thread Eelco Hillenius
Ah, ok. That's a smart thing too. You're using parameters as part of the mount. Eelco On 10/6/06, Jan Willem Janssen [EMAIL PROTECTED] wrote: [about dynamic mount points] I finally succeeded into getting the behaviour I wanted. All I had to do was override addBookmarkablePageParameters()

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
So by the look of the code you show here it is a filter init param, I don't remember seeing anything about configuring a filter. Anyway, I looked at the internalinit() method in WebApplication and found where it is pulling the sourceFolder init param from the servlet. I added that init param

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

2006-10-06 Thread Igor Vaynberg
you can use our wicket tester to generate the page into a string, and then embed it.of course you have to properly mock the url/params-IgorOn 10/6/06, Eelco Hillenius [EMAIL PROTECTED] wrote: The easiest/ most obvious way is to use a(n i)frame and a bookmarkablepage to start up the page. Or you

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Igor Vaynberg
maybe the eiser thing is to define all mount points for all users and then let the page decide security.-IgorOn 10/6/06, Eelco Hillenius [EMAIL PROTECTED] wrote:You have to do a bit more work to achieve that, but it can be done. In your application, overrideprotected IRequestCycleProcessor

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Jan Willem Janssen
maybe the eiser thing is to define all mount points for all users and then let the page decide security. Unfortunately, that would not work because the we cannot determine which mount-points are defined for our user. Users need to log in first before we have that knowledge... Regards, --

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Igor Vaynberg
do users get to create custom mountpoints for themselves?-IgorOn 10/6/06, Jan Willem Janssen [EMAIL PROTECTED] wrote: maybe the eiser thing is to define all mount points for all users and then let the page decide security.Unfortunately, that would not work because the we cannot determinewhich

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Jan Willem Janssen
do users get to create custom mountpoints for themselves? Yes, users can define new entries (= mount-point) for themselves. Groet, -- Jan Willem Janssen, M.Sc. software engineer, Development __ Planon B.V. Wijchenseweg 8 6537 TL Nijmegen P.O. Box 38074 6503 AB

Re: [Wicket-user] Dynamic mount points

2006-10-06 Thread Igor Vaynberg
ah, ok. then what you are doing is correct. mount a base and the rest you can read off the params, that is why the default encoding strat encodes into the path directly, you can also use the Indexed variant if you dont want to have param names in the path. -IgorOn 10/6/06, Jan Willem Janssen

Re: [Wicket-user] Menu bar implementation

2006-10-06 Thread Ayodeji Aladejebi
i have a small menubar impl too i use internally in my project..i created a class to hold Menu MetaData like:public class MenuXItem implements Serializable{ private String tooltip; private String description; private Class pageClass; private boolean externalLink; private String

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread Juergen Donnerstag
You are using V1.2.2? The debug log provided doesn't help a lot. And I'm not able to test it right now, but did try WEB-INF/view /view (actually the files in that directory as well) view already. And I'm sure you are aware that even though you might a sourceFolder the sub-directory structure

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

2006-10-06 Thread Gwyn Evans
On 05/10/06, Anders Holmbech Brandt [EMAIL PROTECTED] wrote: 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

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Erik van Oosten
Martijn Dashorst wrote: Doesn't JBoss IDE start the jboss container in debug mode? Indeed, it does start jboss in debug mode. craigdd wrote: I don't think debug mode in jboss allows the reloading of classes, i believe it it just for remote debugging. Indeed again, JBoss is directly

Re: [Wicket-user] Problem with FormBorder and not visible components (in trunk)

2006-10-06 Thread Juergen Donnerstag
I've copied BoxBorderTestPage_3 into BoxBorderTestPage_7 and made the change you suggested. It is working properly. The textield is no longer printed. Juergen On 10/6/06, Alberto Bueno [EMAIL PROTECTED] wrote: you have the the test case: public class BoxBorderTestPage_3 extends WebPage {

[Wicket-user] MappedValueModel - comments or suggestions?

2006-10-06 Thread Charlie Dobbie
Hi all, One problem I had today was rendering a Boolean property on a domain object in a very specific way (Yes/No/Unspecified). After a few false starts and a few ugly hacks, I came up with the MappedValueModel, below. I'm posting it here in case anyone else finds it useful. It's a simple

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

2006-10-06 Thread Anders Holmbech Brandt
Hello Iman, Friday, October 6, 2006, 7:05:59 AM, you wrote: 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 Super cool. But as I wrote to Justin I'll wait

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
I got it to work with the path WEB-INf/view the thing I was over looking was the fact that when wicket looks for it's markup page it uses the fully qualified class name of the page object. It there anyway to overrider the name of the page object, in other words if I have a WebPage subclass

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread Igor Vaynberg
implement your own IResourceStreamLocator-IgorOn 10/6/06, craigdd [EMAIL PROTECTED] wrote: I got it to work with the path WEB-INf/view the thing I was over looking was the fact that when wicket looks for it's markup page it uses the fullyqualified class name of the page object.It there anyway to

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Igor Vaynberg
why not ask on the jboss forums? what you want to ask is that if jboss can be launched to take advantage of jvm's hotswap.-IgorOn 10/6/06, craigdd [EMAIL PROTECTED] wrote:So in other words the out come to my question is that NO, jboss can not be configured to reloaded changed classes without

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
Implementing my own IResourceStreamLocator doesn't seem correct to me because the interface takes the path to the resource. The more correct why is to find where that path is coming from an overriding that implementation, the next step is to actual find where that path is coming from.

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread craigdd
Yes, my next step is to check the jboss forums, I sort of figured a lot of people that where using wicket might also be using jboss and had figured out this issue because it greatly affects the efficiency of development. I'm getting the impression that most people are using jetty with wicket

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread Igor Vaynberg
the markup stream is resolved in MarkupContainer.newMarkupResourceStream(), it is done via the IResourceStreamLocator defined in resource settings.so you can either override that method on all markup containers, or implement your own IResouceStreamLocator like i sugested. -IgorOn 10/6/06, craigdd

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Igor Vaynberg
mainstream enough to attract developers that are smart enough to figure out that the path of least resistence is to develop on jetty and deploy on jboss :)if you need app server features like ejb then the solution is not to restart the server, but to force it to redeploy your app. -IgorOn 10/6/06,

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Michael Hosier
There is nothing lacking in JBoss here, the guy just doesn't know what he is doing and doesn't know (or care) about the appropriate venues for this type of question. I use JBoss and Eclipse with MyEclipse in development and it is very slick. Perhaps people are not answering his question because it

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
Again I don't think implementing the IResourceStream interface is the correct way because the interface method locate you must implement takes a path member which according to the javadoc IS the path to the resource, it is the responsibility of the IResourceStream implementation to locate the

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread craigdd
Again, sorry for this post to be a little off topic, however, this question has come up because as I'm evaluating wicket I've found that I'm restarted my container way too much while doing some simple web development. I thought maybe that people in this forum have had the same issue and found

[Wicket-user] OK then, let me backup

2006-10-06 Thread Geoff hendrey
Wicket 2 has not been migrated properly to the wicket-parent structure... I intend to do so in the coming weeks. So let me backup then, because I'm not able to understand how that affects my situation (not trying to be oblique, just really lost) What should I checkout from the SVN repo, in

[Wicket-user] DataTable header manipulation

2006-10-06 Thread Stefan Lindner
I can manipulate the data grip part of a DataTable by overriding newCellItem. But if I e.g. need a speical layout for the table header, I must add a class or id attribute to the th elements of the headline (different layout on the left and right side e.g.). I can see no way to manipulate the

Re: [Wicket-user] OK then, let me backup

2006-10-06 Thread Gwyn Evans
On 06/10/06, Geoff hendrey [EMAIL PROTECTED] wrote: Wicket 2 has not been migrated properly to the wicket-parent structure... I intend to do so in the coming weeks. So let me backup then, because I'm not able to understand how that affects my situation (not trying to be oblique, just really

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Leszek Gawron
Stefan Lindner wrote: I can manipulate the data grip part of a DataTable by overriding newCellItem. But if I e.g. need a speical layout for the table header, I must add a class or id attribute to the th elements of the headline (different layout on the left and right side e.g.). I can see

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Gwyn Evans
Dude, you'd have been better to stop at I'm not here to get into an argument. The point that you missed is that Wicket can normally be developed very well using Jetty on my laptop as the most convienient way of running the web-app, then deployed onto whatever production appserver is required -

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
Ok, here is my solution to this problem instead of implementing my own IResourceStreamLocator. The overview is create a abstract class that extends WebPage that overrides the newMarkupResourceStream method. All other pages will extend this object. This object also forces it's children to

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread Igor Vaynberg
you have to do the same mod to Panel and Border, a Page is not the main artefact in wicket - components are, which are often panels or borders. page is merely a top-level container.all in all i think this is overengineering, and i think you will soon find that going the default way makes it easier

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Gwyn Evans
I'm not sure about Stefan's requirements, but doesn't the table.class thead tr.headers th hierarchy let you target the header sufficiently? /Gwyn On 06/10/06, Leszek Gawron [EMAIL PROTECTED] wrote: Stefan Lindner wrote: I can manipulate the data grip part of a DataTable by overriding

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Igor Vaynberg
wow, i mean ... where can you go from here?-IgorOn 10/6/06, craigdd [EMAIL PROTECTED] wrote: Dude, I'm not here to get into an argument here, but you obviously haven'tworked in many corporate settings, you don't always get to pick and choose which app servers you are using.Jetty is NOT an option

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Igor Vaynberg
when i look at the markup of the headers toolbar i seewicket:panel tr class=headers span wicket:id=headers th wicket:id=headerspan wicket:id=labelnbsp;/span/th /span /tr/wicket:panelthat is, i see that the tr carries a class, and the th carries a class. if there is a sortable header then

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Leszek Gawron
Gwyn Evans wrote: I'm not sure about Stefan's requirements, but doesn't the table.class thead tr.headers th hierarchy let you target the header sufficiently? e.g. it does not allow me to specify column widths. If every column had it's id appended as class like: th

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Stefan Lindner
If you want to have the first column of a table in a special layout or the last, a special css treatment is needed. In this cases it is very helpful to have an id-attribute in the td tag. So I overwrite cellContainer @Override protected Item newCellItem(MarkupContainer cellContainer, final

Re: [Wicket-user] Add addictional resource folder

2006-10-06 Thread craigdd
Does Panel and Border have a backing html file like a Page does? I agree that I don't want to overengineer something, so far this change was pretty simple to implement, I just don't like the fact that the .html files live with the java files, I just think it start to get messy. Mind you I don't

[Wicket-user] Wicket 2: DefaultDataTable and HeadersToolbar

2006-10-06 Thread Stefan Lindner
Title: Wicket 2: DefaultDataTable and HeadersToolbar stopped working in current svn: WicketMessage: Unable to find component with id 'label' in [MarkupContainer [Component id = auto-body, page = de.visiomedic.wicket.pages.patientenliste.Patientenliste, path =

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Igor Vaynberg
what if you have two datatables on a page? then your ids are no longer unique.On 10/6/06, Stefan Lindner [EMAIL PROTECTED] wrote:If you want to have the first column of a table in a special layout or the last, a special css treatment is needed. In this cases it is very helpful to have an

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Stefan Lindner
I think there are two cases: 1. Improve the look of all tables generated by DefaultDataTable This can be done by adding id and class attributes to th and td 2. Tune the appearence of a special table. This can still be done by surrounding the table with a span tag having an id. E.g.

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread cowwoc
uh :) I understand he mentioned he's having issues with JBOSS but baring that I would agree with him that developing under one platform and deploying into another is asking for trouble. Jetty can't possibly behave 100% like your target platform. I personally use Netbeans with

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

2006-10-06 Thread Guy Davis
Joni Freeman wrote: Your directory layout looks fine to me. Try to change style sheets to /images/style.css and please let me know if it helps. Hi, Thanks for the response. No, that makes no difference unfortunately. I can even leave the Style Sheets box empty and the problem still occurs.

Re: [Wicket-user] DataTable header manipulation

2006-10-06 Thread Igor Vaynberg
lets see a patch of what you want-IgorOn 10/6/06, Stefan Lindner [EMAIL PROTECTED] wrote: I think there are two cases:1. Improve the look of all tables generated by DefaultDataTable This can be done by adding id and class attributes to th and td2. Tune the appearence of a special table. This can

Re: [Wicket-user] Wicket 2: DefaultDataTable and HeadersToolbar

2006-10-06 Thread Igor Vaynberg
juergen i think this might be one of your recent changes...-IgorOn 10/6/06, Stefan Lindner [EMAIL PROTECTED] wrote: stopped working in current svn: WicketMessage: Unable to find component with id 'label' in [MarkupContainer [Component id = auto-body, page =

[Wicket-user] 1.2.2 branch is perfect so far

2006-10-06 Thread Geoff hendrey
ahhh, thanks for the tip to use the 1.2.2 branch. No problems (aside from the download speed being 0.2K per second from the wicket maven repo ---something is wrong there. I switched to ibiblio which was very fast). -geoff

[Wicket-user] Resource Bundle Best Practice

2006-10-06 Thread craigdd
As I'm evaluating wicket I'm not seeing many examples of using resource bundles. I was wondering how, or what the best practices of using resource bundles with wicket was. I'm primarily interested on how you setup resource bundles through wicket, how to use resource bundles in html pages for

[Wicket-user] source 1.5 for phonebook?

2006-10-06 Thread Geoff hendrey
Is it OK to set the source level to 1.5 for the phonebook, in pom.xml? I wrote ShadesContactDao.java using some 1.5 features. I would like to checkin pom.xml with this change. plugin groupIdorg.apache.maven.plugins/groupId

Re: [Wicket-user] source 1.5 for phonebook?

2006-10-06 Thread Igor Vaynberg
not in the 1.2 branch - that one should work with java 1.4-IgorOn 10/6/06, Geoff hendrey [EMAIL PROTECTED] wrote:Is it OK to set the source level to 1.5 for the phonebook, in pom.xml? I wrote ShadesContactDao.java using some 1.5 features.I would like to checkin pom.xml with this change.

Re: [Wicket-user] Wicket 2: DefaultDataTable and HeadersToolbar

2006-10-06 Thread Juergen Donnerstag
which example or test case? Juergen On 10/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: juergen i think this might be one of your recent changes... -Igor On 10/6/06, Stefan Lindner [EMAIL PROTECTED] wrote: stopped working in current svn: WicketMessage: Unable to find

Re: [Wicket-user] Wicket 2: DefaultDataTable and HeadersToolbar

2006-10-06 Thread Igor Vaynberg
datatable example-IgorOn 10/6/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: which example or test case?JuergenOn 10/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: juergen i think this might be one of your recent changes... -Igor On 10/6/06, Stefan Lindner [EMAIL PROTECTED] wrote: stopped

Re: [Wicket-user] Resource Bundle Best Practice

2006-10-06 Thread Johan Compagner
besides a html file you could define youre .properties (with the same name)and the use wicket:message or the Localizer in the code to get the text for the key.johanOn 10/7/06, craigdd [EMAIL PROTECTED] wrote: As I'm evaluating wicket I'm not seeing many examples of using resourcebundles.I was

Re: [Wicket-user] JBOSS Reload Classes

2006-10-06 Thread Aaron Hiniker
I use jboss for development. You can set your web app as exploded and have the jvm do class hotswapping via your IDE. This only works for certain changes as everyone knows you can't hotswap class schema changes, method signature changes, etc. Also, you can explode your .ear file and redeploy

Re: [Wicket-user] Wicket 2: DefaultDataTable and HeadersToolbar

2006-10-06 Thread Juergen Donnerstag
fixed Juergen On 10/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: datatable example -Igor On 10/6/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: which example or test case? Juergen On 10/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: juergen i think this might be one of your

Re: [Wicket-user] Refreshing problem with ajax component

2006-10-06 Thread Johan Compagner
that click on an item is an ajax request?That shouldnt make a page version as far as i knowIf you have a simple example please make a bug report .you should call: page.setVersioned(false)if you don't want that page to be versioned. Or better if you disable versioning on the tree

Re: [Wicket-user] Empty Dynamic Images

2006-10-06 Thread Matt B
Found the problem when I removed JAI from machine. Worked like a charm once JAI was removed. igor.vaynberg wrote: make sure your servlet mapping ends with /* as in /myapp/* -Igor On 10/3/06, Matthew Bourgeois [EMAIL PROTECTED] wrote: I am new to wicket and have enjoyed it alot so