FormComponentPanel and specifying tabindex for form input

2009-01-29 Thread Gianni Doe
I've got a custom date picker component that extends FormComponentPanel and I include it in my markup with. [date picker] The component uses a hidden form field to store an ISO formatted date value and a display field to show the localised full date. It's the hidden field that is used as the

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Jonas
Hi, have you tried setting getRequestCycleSettings().setResponseRequestEncoding("UTF-8"); getMarkupSettings().setDefaultMarkupEncoding("UTF-8"); in your Application#init If you don't set the default markup encoding explicitly, the default for it is the 'os provided encoding' (see: IMarkupSettin

Re: deploy WicketServlet on Geronimo but 404?

2009-01-29 Thread Igor Vaynberg
do your logs show that the spring context has been initialized fine? -igor On Thu, Jan 29, 2009 at 11:37 PM, Edwin Ansicodd wrote: > > The SpringWebApplication is in org.apache.wicket.spring > > > -- > View this message in context: > http://www.nabble.com/deploy-WicketServlet-on-Geronimo-but-40

Re: deploy WicketServlet on Geronimo but 404?

2009-01-29 Thread Edwin Ansicodd
The SpringWebApplication is in org.apache.wicket.spring -- View this message in context: http://www.nabble.com/deploy-WicketServlet-on-Geronimo-but-404--tp21732316p21742640.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: deploy WicketServlet on Geronimo but 404?

2009-01-29 Thread Edwin Ansicodd
The SpringWebApplication is in org.apache.wicket.spring -- View this message in context: http://www.nabble.com/deploy-WicketServlet-on-Geronimo-but-404--tp21732316p21742638.html Sent from the Wicket - User mailing list archive at Nabble.com. --

Re: Increasing session size

2009-01-29 Thread Igor Vaynberg
considering wicket only keeps last-accessed page in session your session shouldnt just keep growing... -igor On Thu, Jan 29, 2009 at 11:20 PM, Jürgen Lind wrote: > One more thing: just as a rule of thumb, what would be a reasonable > amount of data that gets added to the session for a single req

Increasing session size

2009-01-29 Thread Jürgen Lind
One more thing: just as a rule of thumb, what would be a reasonable amount of data that gets added to the session for a single request? 20k? 100k? Regards, J. Michael Sparer wrote: I took a cursory glance over your code and saw item.add(new Link("update", new Model(auftrag)) this way the

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Marc Ende
Hi Philipp, are your texts are stored in a database? Then you've got two more points where you can search: The encoding of the table and the encoding of the connection. Do you've got the same issues with the templates? Marc Philipp Daumke schrieb: Hi Mathias, 'äöü' is actually already conve

Ajaxified Notification

2009-01-29 Thread PSkarthic
Hi I am karthic i am using wicket in project and its going well. I have scenerio like this Client will click a button and the click event will request something but the requested values will be from the other server(webservices). My Question is

Re: How to unsubscribe

2009-01-29 Thread Jeremy Thomerson
Have you tried sending a single, new message (not replying or forwarding)? Also, make sure that your email comes from the address that is subscribed (i.e., did you subscribe under an alias that forwards to your j_ka...@yahoo.com address? On Thu, Jan 29, 2009 at 6:21 PM, Jawad Kakar wrote: > Hi,

How to unsubscribe

2009-01-29 Thread Jawad Kakar
Hi, I have sent 3 emails to unsubscribe, but still I am getting emails. Wondering if someone can help me Thanks Jawad --- On Thu, 1/29/09, Zhubin Salehi wrote: > From: Zhubin Salehi > Subject: Re: Is there a way to be notified when a tab in a TabbedPanel is > selected? > To: users@wicket.apa

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Philipp Daumke
Hi Mathias, 'äöü' is actually already converted to 'äöü' when I add a breakpoint at the onSubmit method of my form (so right when I get the input of the text field from my model). My whole eclipse is in UTF-8, Wicket writes UTF-8 to each HTML-Page, my firefox says UTF-8. What I think is t

Re: UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Mathias P.W Nilsson
Do you save it to a database and then display the text? How do you present it? -- View this message in context: http://www.nabble.com/UTF-8-bug-in-wicket--Or-in-Tomcat--tp21738467p21738754.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Focus on component

2009-01-29 Thread Matthew Hanlon
You can write a behaviour for it so it will be more reusable. The following is based on http://cwiki.apache.org/WICKET/request-focus-on-a-specific-form-component.html and works for both regular and ajax requests. private final class MyLink extends AjaxFallbackLink { public void onClick

UTF-8 bug in wicket? Or in Tomcat?

2009-01-29 Thread Philipp Daumke
Hi all, when I enter German umlauts (e.g. "äöü") in a wicket text field it's converted to "äöü". Everything seems to be in "UTF-8". I already tried to apply a filter as described in http://wiki.apache.org/tomcat/Tomcat/UTF-8 without success. Any ideas? Thanks for your help Philipp -- Ave

Re: Focus on component

2009-01-29 Thread Philipp Daumke
Hi Michael, thanks for your help, but it doesn't work yet. My code: TextField myField = new TextField("text"); myField.setOutputMarkupId(true); myField.setOutputMarkupPlaceholderTag(true); add(myField); private final class MyLink extends AjaxFallbackLink { public void onClick

Re: RefreshingView/DataView with FormComponents and getForm

2009-01-29 Thread Igor Vaynberg
this is because you are using a refreshing view in combination with form components. in your case view items are removed from the refreshing view before your filter runs, so you have a disconnect between page->form->refresingview- | ->item->formcomponent and so formcomponent.getform() cannot fin

RE: OpenLayer with google WMS

2009-01-29 Thread Wadi Jalil Maluf
Thanks!One more thing, by default the map is too big, how do I set the size?thanks again, Regards, Wadi -Mensaje original- De: nino martinez wael [mailto:nino.martinez.w...@gmail.com] Enviado el: jueves, 29 de enero de 2009 16:30 Para: users@wicket.apache.org Asunto: Re: OpenLayer with go

Re: RefreshingView/DataView with FormComponents and getForm

2009-01-29 Thread Ryan
I hacked together a quickstart and pasted the code here: http://pastebin.com/m3d0a54 I didnt know if there was a policy on pasting code to the list.. Thanks, Ryan On Thu, Jan 29, 2009 at 10:47:13AM -0800, Igor Vaynberg exclaimed: >show us your code > >-igor > >On Thu, Jan 29, 2009 at 10:36 AM,

Re: migration from jsf to wicket

2009-01-29 Thread dtoffe
For 1) I suggest you to take a look at Wicket Web Beans: http://wicketwebbeans.sourceforge.net/ Cheers, Daniel janneru wrote: > > martin & john, > > thank you very much for your ideas! > this helps me very much to make the next steps, i will post the results > when > the integration

Re: RefreshingView/DataView with FormComponents and getForm

2009-01-29 Thread Igor Vaynberg
show us your code -igor On Thu, Jan 29, 2009 at 10:36 AM, Ryan wrote: > I have a Panel with a DataView, inside populateItem I add TextFields to > the Item (and the dataView is added to the Form). > > This panel contains a FeedbackPanel that should only show errors > generated by fields added in

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread nino martinez wael
Hehe, great :) So no problems after all? 2009/1/29 dukejansen > > Okay, nevermind. It turns out the issue can be corrected much more simply, > by > using an "onclick" event type instead of a "click" event type, which > arguably may have been obvious. > > I'm still not certain whether this will s

Re: OpenLayer with google WMS

2009-01-29 Thread nino martinez wael
Hi Wadi just use the old one theres a version for 1.3 branch aswell.. https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicket-contrib-openlayers/ But the pick are yours to decide.. 2009/1/29 Wadi Jalil Maluf > Thanks Jeremy, but it uses wicket 1,4 and I'm u

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread dukejansen
Okay, nevermind. It turns out the issue can be corrected much more simply, by using an "onclick" event type instead of a "click" event type, which arguably may have been obvious. I'm still not certain whether this will still work properly for AjaxFallbackLinks or other links that have both an onc

Re: OpenLayer with google WMS

2009-01-29 Thread nino martinez wael
Regarding your trouble with JTS There is a dependency to this : http://mvnrepository.com/artifact/com.vividsolutions/jts But it should be handled by maven... Unless you just dropped in the jar, then you have to manually put it on class path.. 2009/1/29 Wadi Jalil Maluf > Thanks Jeremy, but it

RefreshingView/DataView with FormComponents and getForm

2009-01-29 Thread Ryan
I have a Panel with a DataView, inside populateItem I add TextFields to the Item (and the dataView is added to the Form). This panel contains a FeedbackPanel that should only show errors generated by fields added in populateItem. Unfortunately the Item object has its parent set to null. So calls t

Re: OpenLayer with google WMS

2009-01-29 Thread nino martinez wael
hhehe just a second faster than me :) 2009/1/29 Jeremy Thomerson > > https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicket-contrib-openlayers/ > > https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicket-contrib-openlayers-ex

Re: textfield to take only numnbers

2009-01-29 Thread Jeremy Thomerson
new TextField("id"); new TextField("id", Integer.class); new TextField("id", Integer.class); On Thu, Jan 29, 2009 at 9:52 AM, miro wrote: > > I s there any textfield which takes only numbers, I dont want user to > enter > letters only numbers so I want a textfield which takes only numbers is

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread nino martinez wael
Ahh ok, it would be very nice if there could be a patch somehow on this.. BTW the auto hook is extremely simple.. So it will only auto hook in the most simple cases, you can always override, and manually tell it what todo.. 2009/1/29 dukejansen > > The code I posted below actually doesn't even

Re: OpenLayer with google WMS

2009-01-29 Thread Jeremy Thomerson
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicket-contrib-openlayers/ https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-1.3.x/wicket-contrib-openlayers-examples/ On Thu, Jan 29, 2009 at 12:16 PM, Wadi Jalil Maluf wrote: > Thank

RE: textfield to take only numnbers

2009-01-29 Thread Heikki Uotinen
Pass the field type in the TextField's constructor http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=:org.apache.wicket.examples.compref.TextFieldPage -Heikki -Original Message- From: miro [mailto:miroconn...@yahoo.com] Sent: 29. tammikuuta 2009 17:52 To: users@wicket.ap

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread dukejansen
The code I posted below actually doesn't even get called if the tag has an onclick attribute... I'm working up a workaround now, I'll post it if it ends up working... -Jason dukejansen wrote: > > Nino, > > Thanks for the quick reply... > > I dug a bit deeper and you are correct, it does hav

RE: OpenLayer with google WMS

2009-01-29 Thread Wadi Jalil Maluf
Thanks Jeremy, but it uses wicket 1,4 and I'm using 1.3.4, anyway I'm getting java.lang.ClassNotFoundException: com.vividsolutions.jts.geom.GeometryFactory exeptions so I'll just use GMAP integration instead, thanks! -Mensaje original- De: Jeremy Thomerson [mailto:jer...@wickettraining.co

deploy WicketServlet on Geronimo but 404?

2009-01-29 Thread Edwin Ansicodd
I'm trying to deploy a SpringWebApplication in a .war on Geronimo. I can see in the console that the app is deploying and no errors are occurring. But when I try to access the URL for the app, I get HTTP Status 404 'The requested resource is not available. Would anyone have any suggestions

Re: OpenLayer with google WMS

2009-01-29 Thread Jeremy Thomerson
There's an openlayer integration in wicketstuff ( http://wicketstuff.org/maven/repository/org/wicketstuff/) with examples. I've never used it. I believe it's a work of Nino. I've looked at the examples, though. On Thu, Jan 29, 2009 at 11:19 AM, Wadi Jalil Maluf wrote: > Hi All!Does anyone knows

Re: Problems running wicket application on Jetty - Help please.

2009-01-29 Thread Igor Vaynberg
you have to declare those dependencies in the pom of your project. mvn jetty:run does not see what you have exported in eclipse - that is an eclipse specific feature. -igor On Thu, Jan 29, 2009 at 4:30 AM, Daniel Ferreira Castro wrote: > I know that this can be a little "gray zone problem", but

OpenLayer with google WMS

2009-01-29 Thread Wadi Jalil Maluf
Hi All!Does anyone knows how to use openlayer map control with google map like this example http://openlayers.org/dev/examples/google.html in wicket? Thanks!

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread dukejansen
Nino, Thanks for the quick reply... I dug a bit deeper and you are correct, it does have some hooks for handling Links, but it may only work for links which extend from the base Link class. // Try to bind to link so shortcut will work. Should only be done if

Flicker on AJAX tree updates

2009-01-29 Thread Seven Corners
I have a LinkTree where the nodes represent systems, servers, or services within a system. The nodes have specific images associated with their semantics and their health, and the health is polled at intervals to see if I need to change the resource, e.g., to represent if a server is down. I hav

Re: Focus on component

2009-01-29 Thread Michael Sparer
use target.(pre|append)Javascript if you want additional JS executed before/after doing the wicket-ajax stuff if you only want to set the focus (without any ajax involved), don't use ajaxlink, use e.g. a simple WebmarkupContainer hth, michael Philipp Daumke-2 wrote: > > Dear all, > > I try t

Re: getRequest().getPage() always null

2009-01-29 Thread Johan Compagner
because in the onbeginrequest of the requestcycle the request parsing starts.. it is not done yet. so the request cycle doenst know the page What you should do is have a AbstractSecurePage and do you stuff there (and so on) But look at the other projects like Swarm/Wasp or wicket-aut-roles On We

Re: textfield to take only numnbers

2009-01-29 Thread Philipp Daumke
Hi Miro, can't you use a PatternValidator such as: add(new TextField("textfieldname").add(new PatternValidator("^\\d+$"))); Cheers Philipp I s there any textfield which takes only numbers, I dont want user to enter letters only numbers so I want a textfield which takes only numbers is there

textfield to take only numnbers

2009-01-29 Thread miro
I s there any textfield which takes only numbers, I dont want user to enter letters only numbers so I want a textfield which takes only numbers is there any such textfield ? -- View this message in context: http://www.nabble.com/textfield-to--take-only-numnbers-tp21729554p21729554.html Sent

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Zhubin Salehi
This code looks cool, thanks a lot! Erik van Oosten wrote: > > How about this: > > tabs.add(new PanelCachingTab(new AbstractTab(new > StringResourceModel("title.byMobinetId", > FindUserAccount.this, null)) { > > private static final long serialVersion

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
How about this: tabs.add(new PanelCachingTab(new AbstractTab(new StringResourceModel("title.byMobinetId", FindUserAccount.this, null)) { private static final long serialVersionUID = 5564837747113048306L; public Panel getPanel(Stri

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Zhubin Salehi
Sorry wrong code fragment! Here is the right one: /* 'search by MobiNET ID tab */ tabs.add(new PanelCachingTab(new AbstractTab(new StringResourceModel("title.byMobinetId", FindUserAccount.this, null)) { private static final long serialVersi

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Zhubin Salehi
So which Panel method is a best to monitor when that panel is selected? I need to set a model property for each of my tabs. Also I tried to stop Wicket from instantiating a new Panel every time a tab is selected, here is the code: /* advanced search check box */ add(new AjaxCheck

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
Yes, unless you use the PanelCachingTab decorator. Erik. Zhubin Salehi wrote: So every time a tab is selected, a new instance of that panel will be created? -- Erik van Oosten http://day-to-day-stuff.blogspot.com/ -

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Martin Makundi
Yes, simply every time your panel is instantiated, it means someone navigated to the particular tab. You can monitor this also in your panel class. ** Martin 2009/1/29 Zhubin Salehi : > > So every time a tab is selected, a new instance of that panel will be > created? > > > Erik van Oosten wrote:

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Zhubin Salehi
So every time a tab is selected, a new instance of that panel will be created? Erik van Oosten wrote: > > Hi Zhubin, > > Everytime there is a tab switch, method getPanel from the ITab instance > is called. > > Regards, > Erik. > > > Zhubin Salehi wrote: >> Hi all, >> >> How can I be no

RE: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2009-01-29 Thread Wadi Jalil Maluf
Thanks! -Mensaje original- De: rmattler [mailto:robertmatt...@gmail.com] Enviado el: jueves, 29 de enero de 2009 11:55 Para: users@wicket.apache.org Asunto: Re: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory NoClassDefFoundError means that netbeans or the server can't find a fi

Re: applet web.xml mapping

2009-01-29 Thread rmattler
It appears I still have some things to learn about servlet mapping. But I still don't understand why changing my url-pattern form /* to /app/* would make my applet not work. Any way if anybody else want to use an applet to upload files here is how I did it. My web.xml file is:

Re: migration from jsf to wicket

2009-01-29 Thread janneru
martin & john, thank you very much for your ideas! this helps me very much to make the next steps, i will post the results when the integration is done! bestregards, uwe! On Thu, Jan 29, 2009 at 11:41 AM, Martin Makundi < martin.maku...@koodaripalvelut.com> wrote: > > 1) working with many attri

Focus on component

2009-01-29 Thread Philipp Daumke
Dear all, I try to show and focus on a text field when clicking on a link. The focus however doesn't work. I tried to follow an example in cwiki (http://cwiki.apache.org/WICKET/calling-javascript-function-on-wicket-components-onclick.html) but I somehow do something wrong. I tried to add some

Re: migration from jsf to wicket

2009-01-29 Thread John Krasnay
On Thu, Jan 29, 2009 at 12:41:31PM +0200, Martin Makundi wrote: > > 1) working with many attributes of an object > > we have some pages where we access many attributes of an object, say we want > > to show all 20 attributes of a person and all 10 attributes of > > person.getAddress(); > > in the Pe

Re: Getting data from applet

2009-01-29 Thread rmattler
You are correct the applet was not doing a form submit. The servlet works. Thanks. igor.vaynberg wrote: > > the question is: how does the uploader send the upload? does it send > the data as part of the form submit or in the background independently > of the form data? since it can do things l

Re: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2009-01-29 Thread rmattler
NoClassDefFoundError means that netbeans or the server can't find a file. I'm guessing that it can't find the slf4j.jar http://www.slf4j.org/faq.html >From the wicket site: Important note about logging dependencies for 1.3.0 and later. As of Wicket 1.3.0, Wicket uses the SLF4J project for log

Re: Graphs, Charts and Wicket

2009-01-29 Thread newbieabc
If you don't mind, could you post your code to display the chart you used? I was interested the gradient fill chart they offered, but am really new to wicket and didn't understand how to add it in wicket. Thanks! Jurek Piasek wrote: > > I have been using Amcharts > > http://www.amcharts.com/

java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

2009-01-29 Thread Wadi Jalil Maluf
Hi all!I'm facing some trouble running the wicket stuff examples because no one start due to java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory exception.I'm using netbeans 6.5 and netbeans. Thanks, Wadi

Re: DataView and increasing session size

2009-01-29 Thread Jürgen Lind
Michael, thanks for your help, it significantly reduced the amount of session data. Still, the session keeps growing... Is there any way to determine which objects get serialized and where they are dangling? Removing the Serializable interface helps me to spot my own classes but it does not work

Problems running wicket application on Jetty - Help please.

2009-01-29 Thread Daniel Ferreira Castro
I know that this can be a little "gray zone problem", but let me ask anyway. I went to the quickstart, http://wicket.apache.org/quickstart.html, e executed the command bellow 1) mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -Darchetype

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
I took a cursory glance over your code and saw item.add(new Link("update", new Model(auftrag)) this way the "auftrag" gets into your session, you should say item.getModel() there instead of new Model(auftrag) check your code if there is similar stuff in it - spotting those things might be quit

Re: Architectural dilemma: Wicket + REST (JSR311)

2009-01-29 Thread Fabrizio Giudici
Erik van Oosten wrote: Wicket is all about stateful applications (though stateless stuff is useful and is supported). REST is all about stateless resources (though you sometimes need stateful hacks for login/authentication). Given these premises, I would not implement REST resources with Wicke

Re: DataView and increasing session size

2009-01-29 Thread Jürgen Lind
After some twiddling I found that the PagingNavigator seems to be the culprit. If I leave it out, the session grows only moderately, when I put it in, the domain objects end up in the session... Anyway here is the code: public class AuftragUebersicht extends MasterLayout { @SpringBean privat

Re: Architectural dilemma: Wicket + REST (JSR311)

2009-01-29 Thread Erik van Oosten
Wicket is all about stateful applications (though stateless stuff is useful and is supported). REST is all about stateless resources (though you sometimes need stateful hacks for login/authentication). Given these premises, I would not implement REST resources with Wicket (well, maybe if you h

Architectural dilemma: Wicket + REST (JSR311)

2009-01-29 Thread Fabrizio Giudici
Hi there. My application, along with the usual HTML pages generated with Wicket, should also expose some RESTful services. These REST calls should return documents of various types: images, movies, as well as RDF/XML and N3 and so far. In an architectural spike I've made, I've used Jersey (imp

Re: AW: getRequest().getPage() always null

2009-01-29 Thread Michael Sparer
sounds as if you want to implement your own authorization stuff - I'd suggest to have a look into wicket-auth-roles (and the examples). there's a lot already implemented and you don't have to hook into the requestcycle too much ... regards, Michael Arthur Leigh Allen wrote: > > Hello people, >

Re: DataView and increasing session size

2009-01-29 Thread Michael Sparer
the objects shouldn't be serialized into the session if you're using loadabledetachable models, please show us some code regards, Michael Jürgen Lind-2 wrote: > > Hi, > > I have a question on how the DataView component is supposed to work. In my > application, I have to show quite large list

Re: migration from jsf to wicket

2009-01-29 Thread Martin Makundi
> 1) working with many attributes of an object > we have some pages where we access many attributes of an object, say we want > to show all 20 attributes of a person and all 10 attributes of > person.getAddress(); > in the PersonPage.java i would have to add 30 label (or input) components, > 30 lin

Re: Issues with wicket-contrib-input-events in Mozilla

2009-01-29 Thread Nino Martinez
Hi Duke dukejansen wrote: Additional testing with FireBug reveals that the JavaScript engine is reporting an error when the Escape or Enter key is hit: document.getElementById("cancelLink9d7").click is not a function http://.../resources/wicket.contrib.input.events.InputBehavior/shortcuts.js Li

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Nino Martinez
Martijn Dashorst wrote: On Thu, Jan 29, 2009 at 10:59 AM, Thomas Singer wrote: far easier than web dev Nope. It is easier, because you just need to code and are absolutely free in refactoring. No need to mess with XML or HTML files, too. No need to use reflection. BTW, Wick

migration from jsf to wicket

2009-01-29 Thread janneru
we are on the way to migrate our old struts web app to something more modern. our first try was seam/jsf, but the performance of jsf was very disappointing. so now our plan is to use seam (as we like its component model and the performance was quite good - after using @BypassInterceptors) with

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Nino Martinez
Erik van Oosten wrote: If your going with Swing I strongly recommend Glazed Lists for everything you do with drop down lists, selection lists and tables. Every time a coworker thought it was not worth the little extra hassle, we had to revert that decision later on. Thanks, they look nice...

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Martijn Dashorst
On Thu, Jan 29, 2009 at 10:59 AM, Thomas Singer wrote: >>> far easier than web dev >> >> Nope. > > It is easier, because you just need to code and are absolutely free in > refactoring. No need to mess with XML or HTML files, too. No need to use > reflection. BTW, Wicket is the only web-application

[OT] German wicket programmers wanted

2009-01-29 Thread Stefan Lindner
We are looking for Wicket programmers with native German language for a project in Health Care. If anybody on this list knows about persons with free development capacity please mail to Stefan Lindner lind...@visionet.de

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Thomas Singer
>> far easier than web dev > > Nope. It is easier, because you just need to code and are absolutely free in refactoring. No need to mess with XML or HTML files, too. No need to use reflection. BTW, Wicket is the only web-application framework, I've found which feels quite similar easily. Others a

DataView and increasing session size

2009-01-29 Thread Jürgen Lind
Hi, I have a question on how the DataView component is supposed to work. In my application, I have to show quite large list of entities and so I am using a DataView together with LoadableDetachableModels to read the data on demand. However, when looking at the serialized sessions, I can observe t

Re: [OT] Wicket Like framework for desktop applications?

2009-01-29 Thread Erik van Oosten
If your going with Swing I strongly recommend Glazed Lists for everything you do with drop down lists, selection lists and tables. Every time a coworker thought it was not worth the little extra hassle, we had to revert that decision later on. If you are willing to spend a little bit of cash,

Re: Is there a way to be notified when a tab in a TabbedPanel is selected?

2009-01-29 Thread Erik van Oosten
Hi Zhubin, Everytime there is a tab switch, method getPanel from the ITab instance is called. Regards, Erik. Zhubin Salehi wrote: Hi all, How can I be notified when one of the tabs in a TabbedPanel is selected? Where is no onSelect() method in ITab interface, is there a way to achieve t