[Wicket-user] Jasper Report

2006-06-07 Thread gangadhar
Hi All we are devloping web application using wicket ,jasper report, hibernate I want to know how to call jasper reports in wicket Thankas Gangadhar ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/li

Re: [Wicket-user] Multiple form component validation, validate two or more fields that are related

2006-06-07 Thread Nick Heudecker
Generally I'd implement IFormValidator, but things like:AndValidator(IValidator, IValidator) and OrValidator(IValidator, IValidator)would be interesting.On 6/8/06, Christopher Derek Curry <[EMAIL PROTECTED]> wrote: Hi,Can anyone provide a simple example on how to do "Multiple form component valida

[Wicket-user] Multiple form component validation, validate two or more fields that are related

2006-06-07 Thread Christopher Derek Curry
Hi,Can anyone provide a simple example on how to do "Multiple form component validation, validate two or more fields that are related" as listed in major features of Wicket 1.2 on the home page? I saw some posts from late 2005 about this (doing the stuff in the onSubmit), but it would be nice to k

Re: [Wicket-user] wicket-ajax vs wicket-dojo

2006-06-07 Thread Igor Vaynberg
Also keep in mind our ajax support is focused on behaviors not on components - thats why there arent very many of those. The point is to let you easily ajaxify components you already built or will build simply by adding the right behaviors. Things like partial render/form submissions/links you will

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Martijn Dashorst
Read: http://sourceforge.net/svn/?group_id=134391 On 6/5/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > Please i have been having "No route to host" error using eclipse to check > out from Subversion, formally i use > > :pserver:[EMAIL PROTECTED]:/cvsroot/wicket-stuff > > to access the CVS but

Re: [Wicket-user] Binding package resources recursively

2006-06-07 Thread Eelco Hillenius
> After looking at the code, it seems that this error message should not > include the class name in the message. I've checked the .war deployment I > have the images folder next to the MyPage class and also in the respective > place in my 'resources' directory. This is supposed to work as of 1.

Re: [Wicket-user] WicketTester broken on 1.2?

2006-06-07 Thread Michael Day
I had created a bug report for it with a code sample, but I'll paste another sample here: public class IndexedParamTest extends TestCase { public IndexedParamTest(String name) { super(name); } public void testPage() throws Exception { WicketTester app = new Wick

[Wicket-user] Knowing Output Markup IDs at runtime

2006-06-07 Thread Ayodeji Aladejebi
How du i obtain at runtime, the value that will be generated by Component.setOutputMarkupId(true)?Component.getMarkupId() is not returning as expected?Thanks-- Hey guess what? My Birthday is today on 06/06/06 - Me ___ Wicket-user mailing list Wicket-user

Re: [Wicket-user] WicketTester broken on 1.2?

2006-06-07 Thread Juergen Donnerstag
As I mentioned in the previous mail. You need to call public void init() { super.init(); configure(DEVELOPMENT); } I've created test case based on your code and it works. Juergen On 6/6/06, Michiel Trimpe <[EMAIL PROTECTED]> wrote: > Just did some t

Re: [Wicket-user] Binding package resources recursively

2006-06-07 Thread Aaron Hiniker
OK, so what could cause this to not work?? I have an image sitting in my war dir, I try to access it using the url scheme you provided, and I get this: 19:32:05,723 ERROR [SharedResourceRequestTarget] shared resource com.mysite.MyPage/images/arrow_connect_left.jpg not found After looking a

[Wicket-user] Wicket

2006-06-07 Thread Gangadhar Vibhute
Hi All I want to use following methods of servlets in wicket how to use it response.getWriter() ServletOutputStream ouputStream =response.getOutputStream(); ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lis

Re: [Wicket-user] wicket-ajax vs wicket-dojo

2006-06-07 Thread Eelco Hillenius
The core ajax support is very nice because it allows you to re-render any component you want without having to code a single line of javascript. Dojo and friends are richer on the javascript side. But I don't think you have to choose one or another; just mix 'n match according to what you need. Tha

Re: [Wicket-user] Binding package resources recursively

2006-06-07 Thread Eelco Hillenius
That should work yes. For instance, if you look at the basic tree in Wicket examples, here is the collapse pic: http://localhost:8080/wicket-examples/nested/resources/wicket.markup.html.tree.Tree/minus.gif so it's ${server}/{webapp}/{servletpattern}/resources/${path-to-package}.{any-class}/{reso

[Wicket-user] wicket-ajax vs wicket-dojo

2006-06-07 Thread Wouter de Vaal
Hi, I'm trying to decide whether to use the dojo-toolkit from wicket-stuff or the native wicket-ajax support. Dojo looks very cool and has a lot of nice features and widgets, which may be easily incorporated using the wicket dojo-toolkit (right?) and the ajax features/widgets from wicket don't loo

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Eelco Hillenius
No, I didn't get you. Nevermind, the other replies are better :) Eelco On 6/7/06, Otan <[EMAIL PROTECTED]> wrote: > Are you implying that getting a markup's tagbody to be used for the model is > not recommended/easy? > > > > On 6/6/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote: > > > String s =

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Otan
Are you implying that getting a markup's tagbody to be used for the model is not recommended/easy?On 6/6/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:String s = "Hello, ++name++. Do you know that your name which is ++name++ is very beautiful? The ++name++ is a Japanese word. Themeaning of the wor

Re: [Wicket-user] Session ids and search engine bots

2006-06-07 Thread John Patterson
On 7 Jun 2006, at 22:15, Igor Vaynberg wrote:Because wicket components are stateful that state needs to live somewhere. So far it can only live in session for wicket 1.2 or on client in wicket 2.0. Thanks for the update.  I look forward to using this new facility.Maybe in 2.0 what we do is check fo

Re: [Wicket-user] Binding package resources recursively

2006-06-07 Thread Aaron Hiniker
Can you provide an example?  I have some images in    us/mysite/images/*  and I am trying to access an image via: /mysite/resources/us.mysite.MyPage/images/image.jpg  where MyPage is in the us/mysite/ path. (i've copied the folder to both my src and resources directory) What is the exact

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Gwyn Evans
http://svn.sourceforge.net/viewcvs.py/wicket-stuff/trunk/ On 05/06/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > Please i have been having "No route to host" error using eclipse to check > out from Subversion, formally i use > > :pserver:[EMAIL PROTECTED]:/cvsroot/wicket-stuff > > to access t

Re: [Wicket-user] Session ids and search engine bots

2006-06-07 Thread Igor Vaynberg
Because wicket components are stateful that state needs to live somewhere. So far it can only live in session for wicket 1.2 or on client in wicket 2.0. Maybe in 2.0 what we do is check for the bot and then switch from server to client state. But even then the problem is that urls are not stable, t

Re: [Wicket-user] Session ids and search engine bots

2006-06-07 Thread John Patterson
On 7 Jun 2006, at 17:32, Eelco Hillenius wrote:Well, people can still argue whether it is in Google's way or not. Seemy comment at http://technically.us/n8/articles/2006/05/07/baking-for-google#commentsI have read quotes on Matt Cutts blog that session ids should be avoided.  Also quotes from Googl

Re: [Wicket-user] "Multiple form component validation, validate two or more fields that are related"

2006-06-07 Thread Eelco Hillenius
There is IFormValidator. Two concrete implementations of IFormValidator you might want to take a look at for ideas are EqualInputValidator and the derived EqualPasswordInputValidator. Eelco On 6/6/06, Christopher Derek Curry <[EMAIL PROTECTED]> wrote: > Hi, > > Can anyone provide a simple exampl

[Wicket-user] "Multiple form component validation, validate two or more fields that are related"

2006-06-07 Thread Christopher Derek Curry
Hi,Can anyone provide a simple example on how to do "Multiple form component validation, validate two or more fields that are related" as listed in major features of Wicket 1.2 on the home page? I saw some posts from late 2005 about this (doing the stuff in the onSubmit), but it would be nice to kn

Re: [Wicket-user] WicketTester broken on 1.2?

2006-06-07 Thread Juergen Donnerstag
This thread has started with Michiel Trempe providing some pieces of code which don't work One piece was a subclass of Application which looked like public void init() { configure(DEVELOPMENT); } and that doesn't work. You need to call Application.init(). Your probl

Re: [Wicket-user] Dependency Injection vs Service Locator

2006-06-07 Thread Eelco Hillenius
> I've been investigating the possibilities of integrating Wicket and > OSGi with favourable results. Good. I know of a couple of projects that were build with OSGi, some guys over at Felix and http://www.eclipse.org/proposals/rsp/ are having fun with it too. > However, one major hurdle, which I

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-06-07 Thread Mark Derricutt
On 6/7/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I suggest (tried and tested at my company) to use the Auth application as your base class and merge the spring related stuff into your subclass. The spring integration is agnostic for sessions and such, so you'll be up and running much quicker

Re: [Wicket-user] Dependency Injection vs Service Locator

2006-06-07 Thread Igor Vaynberg
oh yes, and then there is the serialization issue. you cannot just inject a page with dependencies directly because they would be stored in session and serialized - big no no.you can inject into transient fields but then you need to somehow magically reinject when a page is deserialized so you need

Re: [Wicket-user] CheckGroup/Check path value

2006-06-07 Thread Timo Stamm
Johan Compagner schrieb: > what whould happen if you have a checkgroup inside a listview again? > how would you differentiate the 2 or 3 checkgroups values? You don't have to. The values are separate because they are sent using the different input names of the checkgroups. I tripped over this, t

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Eelco Hillenius
Yep. Use bookmarkable pages. There are several examples on this, e.g. in the Link-o-matic example and documentation is on this list and e.g. here http://www.wicket-wiki.org.uk/wiki/index.php/Bookmarkable_nonBookmarkable_pages Eelco On 6/6/06, Stefan Groschupf <[EMAIL PROTECTED]> wrote: > Hi, >

Re: [Wicket-user] Dependency Injection vs Service Locator

2006-06-07 Thread Igor Vaynberg
what prevents quote true end quote dependency injection is that wicket components are not beans. they make full use of the properties of java constructor semantics and are unmanaged ( you invoke new operator not a container ). because of the usage of constructor the dependency have to somehow be in

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Johan Compagner
http://sourceforge.net/svn/?group_id=134391On 6/5/06, Ayodeji Aladejebi < [EMAIL PROTECTED]> wrote:Please i have been having "No route to host" error using eclipse to check out from Subversion, formally i use :pserver:[EMAIL PROTECTED]:/cvsroot/wicket-stuff to access the CVS but i see wicket has m

Re: [Wicket-user] Listener for a TextBox

2006-06-07 Thread Eelco Hillenius
You can look at how e.g. wantsOnSelectionChanged is implemented in DropDownChoice. // Should a roundtrip be made (have onSelectionChanged called) when the selection changed? if (wantOnSelectionChangedNotifications()) { // url

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-06-07 Thread Martijn Dashorst
Risking writing a message for /dev/null (sourceforge lists are borked at the moment)...There is an RFE/Bug report for working with the different application aspects. Currently you have to merge these by hand yourself. I suggest (tried and tested at my company) to use the Auth application as your ba

[Wicket-user] Dependency Injection vs Service Locator

2006-06-07 Thread Ben Fortuna
Hi all, I've been investigating the possibilities of integrating Wicket and OSGi with favourable results. However, one major hurdle, which I think a couple of others have also pointed out here, is that there is as yet no solution providing "true" dependency injection for Wicket. I've looked at th

[Wicket-user] Listener for a TextBox

2006-06-07 Thread Neeti Garg
Hi, Is there a way I could trigger an event [Like loading a response page] after a Text Box has been populated? Thanks Neeti Garg ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user

Re: [Wicket-user] Options Transfer Component?

2006-06-07 Thread Dirk Markert
Andreas,check this one: http://www.wicket-library.com/wicket-examples/compref;jsessionid=1964CEEDBD5270FCDA54CFE3AFAE4CB7?wicket:bookmarkablePage=:wicket.examples.compref.PalettePageDirk2006/6/7, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi,I'm new to Wicket and Ineed to create an "Options Transfer"

[Wicket-user] AJAX within a Border gives an error

2006-06-07 Thread Andrew Berman
I have a case where the hierarchy is set up like this:Border    ->  WebMarkupContainer                                            ->  Border > Ajax Link which adds the WebMarkupContainer to the AjaxRequestTarget

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Igor Vaynberg
search the wiki for bookmarkable pages/links-IgorOn 6/6/06, Stefan Groschupf <[EMAIL PROTECTED] > wrote:Hi,I'm very new to wicket and I have a webpage done with wicket.I notice that the navigation is session dependent. :-( foo.com/?wicket:interface=:1:: points to different pages any time.Means it i

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Gwyn Evans
On 06/06/06, Stefan Groschupf <[EMAIL PROTECTED]> wrote: > In general: is there a way to have session independent generated > links? May be just a configuration thing? > Where I have to look into? > Thanks for any pointers? You're after a BookmarkablePageLink, although once you've had a look at t

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Ayodeji Aladejebi
thanks manOn 6/6/06, Rüdiger Schulz <[EMAIL PROTECTED]> wrote: Hello Ayodejiyou need to connect tohttps://svn.sourceforge.net/svnroot/wicket-stuff.And you will need a subversion-plugin for Eclipse, like subclipse: http://subclipse.tigris.org/install.htmlFunnily, I blogged about getting wicket-stuff

Re: [Wicket-user] Session ids and search engine bots

2006-06-07 Thread Eelco Hillenius
Well, people can still argue whether it is in Google's way or not. See my comment at http://technically.us/n8/articles/2006/05/07/baking-for-google#comments A session will still be created, even if you only have bookmarkable pages. We tried to get rid of it, but it prooved undoable at this time.

Re: [Wicket-user] Wicket Newbie Best Practices Questions

2006-06-07 Thread Vincent Jenks
I'd have to agree, I had to ask a lot of silly questions before getting some very basic things done w/ models. On 6/7/06, Matej Knopp <[EMAIL PROTECTED]> wrote: > Hmm.. Seems like I should resurrect my unfinished "Models for dummies" > tutorial. Perhaps lack of "just-do-it-like-this" documentation

Re: [Wicket-user] Wicket Newbie Best Practices Questions

2006-06-07 Thread Matej Knopp
Hmm.. Seems like I should resurrect my unfinished "Models for dummies" tutorial. Perhaps lack of "just-do-it-like-this" documentation causes most of new user being confused about models and about where and how should the components get their data from... I don't say the model documentation in w

Re: [Wicket-user] Eclipse classpath problem

2006-06-07 Thread Eelco Hillenius
Thanks for the tip John. Eelco On 6/6/06, John Patterson <[EMAIL PROTECTED]> wrote: > > Hi all, > > > Here is a tip for Wicket users following Eclipse milestone builds. > > I have recently upgraded Eclipse to 3.2RC7 from M5a and it broke my launch > configurations. It auto-upgrades them to a ne

[Wicket-user] Session ids and search engine bots

2006-06-07 Thread John Patterson
Hi, I was wondering what the current state of wicket is regarding not adding a JSESSIONID to pages served to search engine bots? Also, are http sessions still created if I use only bookmarkable pages and don't want to store any application session state? Thanks, John. __

Re: [Wicket-user] Knowing Output Markup IDs at runtime

2006-06-07 Thread Igor Vaynberg
depends on when you call it. if all components are linked from page to the one you are calling getmarkupid() that it will return the correct value - in 2.0 you will be able to do it from anywhere.what is the usecase you have? there are some workarounds you can use for 1.2 but they depend on the us

[Wicket-user] Knowing Output Markup IDs at runtime

2006-06-07 Thread Ayodeji Aladejebi
How du i obtain at runtime, the value that will be generated by Component.setOutputMarkupId(true)?Component.getMarkupId() is not returning as expected?Thanks ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/list

Re: [Wicket-user] Wicket Newbie Best Practices Questions

2006-06-07 Thread Igor Vaynberg
ditto what mataj said. a detachable model for the snippets list is a must. that way the list stays up to date all on its own.-IgorOn 6/7/06, Matej Knopp <[EMAIL PROTECTED]> wrote:> Hello all, Hi I'm just starting with Wicket and after completing my first working> Wicket WebPage & Panel, I'd lo

Re: [Wicket-user] Communication with Flash

2006-06-07 Thread Igor Vaynberg
all you have to do is pass in a callback url to the flash that it then has to invoke and pass in the data, you can read the data off the request paramyou can create your own listener and call urlfor(component, listener) to get the url string. see ILinkListener and Link for how its done, its pretty

[Wicket-user] Eclipse classpath problem

2006-06-07 Thread John Patterson
Hi all,Here is a tip for Wicket users following Eclipse milestone builds.I have recently upgraded Eclipse to 3.2RC7 from M5a and it broke my launch configurations.  It auto-upgrades them to a new format and annoyingly removes resources in your source directories from the classpath.  Because wicket

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-06-07 Thread Eelco Hillenius
I don't like those 'convenience' application classes. We should get rid of them and replace them with a better pattern. Not sure what that would look like at this time. Eelco On 6/7/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > this is a problem that we are aware of. we will have to modularize

Re: [Wicket-user] Wicket Newbie Best Practices Questions

2006-06-07 Thread Eelco Hillenius
In general, I think your code looks fine. It looks like how you would write things if it were a Swing app. A possible improvement is to rely more on the request-response nature of Wicket. In desktop applications, you are generally in charge of letting dependent components know some state has chang

Re: [Wicket-user] writing inside

2006-06-07 Thread Igor Vaynberg
no, this is not possible because wicket components can only be xml/html tags.you have to write out the entire tag.maybe load the javascipt from a textfile, interpolate the variables, and dump that into a label if you dont want to have _javascript_/css in your java code. see PackagedTextTemplate and

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-06-07 Thread Igor Vaynberg
this is a problem that we are aware of. we will have to modularize the application classes somehow so the functionality can be mixed.maybe we can provide a soft application-level context that modules can register things under, or some more typesafe module system. we havent seen a lot of this happen

[Wicket-user] writing inside

2006-06-07 Thread Aaron Hiniker
Is it possible to do this? test Wicket complains that it can't find "function" component in the markup. or: alert( 'value' ); same problem Aaron ___ Wicket-user m

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Vincent Jenks
You would have to use Bookmarkable Pages. There's a very good tutorial on the subject in the wiki. On 6/6/06, Stefan Groschupf <[EMAIL PROTECTED]> wrote: > Hi, > I'm very new to wicket and I have a webpage done with wicket. > I notice that the navigation is session dependent. :-( > foo.com/?wicke

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Eelco Hillenius
String s = "Hello, ++name++. Do you know that your name which is ++name++ is very beautiful? The ++name++ is a Japanese word. The meaning of the word ++name++ in Japanese is space (50 times more citation of ++name++ here"; String name = "Haiku"; add(new Label("foo", s.replace("++name++", name

Re: [Wicket-user] Options Transfer Component?

2006-06-07 Thread Gwyn Evans
Hi, Take a look at the Palette component - e.g. http://www.wicket-library.com/wicket-examples/compref?wicket:bookmarkablePage=:wicket.examples.compref.PalettePage /Gwyn On 07/06/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I'm new to Wicket and I > need to create an "Options Trans

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Igor Vaynberg
see wicket.markup.transformer package, you can write a transformer that will do the replcement for you. keep in mind this is not the most efficient solution because wicket has to buffer the rendered output of the tag so that the transformer can change it instead of directly streaming it into respon

Re: [Wicket-user] PageLink wanting to check model before allowing popup

2006-06-07 Thread Eelco Hillenius
That's a bit complicated to achieve. Generally, you either can choose to immediately close the popup if you find out the model value is not what it should be, or you should do the popup by using an extra redirection. For instance, you link could be an ajax link, that sends back a script to be execu

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Dirk Markert
Stefan,you have to use a bookmarkable pagelink. See the linkomatic example in wicket examples. Copied from there:// Link to Page1 is a simple external page linkadd(new BookmarkablePageLink("page1Link", Page1.class));// Link to Page3 is an external link which takes a parameteradd(new BookmarkablePa

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Igor Vaynberg
the hardest part is reading the span's body from markup so it can be used as a template.-IgorOn 6/6/06, Johan Compagner < [EMAIL PROTECTED]> wrote:use a span on that place. With renderBodyOnly = true. johanOn 6/3/06, nato < [EMAIL PROTECTED] > wrote: For example, I have this in my markup: Hello, ++

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Igor Vaynberg
svn.sourceforge.net/svnroot/wicket-stuff/trunkit should be listed on sf.net/projects/wicket-stuff -IgorOn 6/5/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: Please i have been having "No route to host" error using eclipse to check out from Subversion, formally i use :pserver:[EMAIL PROTECTED]:/cv

Re: [Wicket-user] HOWTO: replace some texts inside a tagbody.

2006-06-07 Thread Johan Compagner
use a span on that place. With renderBodyOnly = true.johanOn 6/3/06, nato <[EMAIL PROTECTED] > wrote:For example, I have this in my markup: Hello, ++name++. Do you know that your name which is ++name++ is very beautiful? The ++name++ is a Japanese word. The meaning of the word ++name++ in Japanese

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Eelco Hillenius
Subversion access is explained here: http://sourceforge.net/svn/?group_id=119783 Eelco On 6/5/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > Please i have been having "No route to host" error using eclipse to check > out from Subversion, formally i use > > :pserver:[EMAIL PROTECTED]:/cvsroot

Re: [Wicket-user] CheckGroup/Check path value

2006-06-07 Thread Igor Vaynberg
maybe you can provide a patch :)-IgorOn 6/6/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:Hello,I'm working on some _javascript_ functionality in conjunction with CheckGroup/Check components. For this I'd really appreciate if Check would render a 'shorter' value attribute, e.g. instead of:  ...

Re: [Wicket-user] Binding package resources recursively

2006-06-07 Thread Eelco Hillenius
It's not needed anymore. From changes.xml: Package resources do not have to be pre-registered anymore. When a shared resource is not found, Wicket tries to find a corresponding package resource, and if it finds one, registers it lazily. This fixes quite a few uncomfortable situations, and makes wr

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Eelco Hillenius
Yep. Use bookmarkable pages. There are several examples on this, e.g. in the Link-o-matic example and documentation is on this list and e.g. here http://www.wicket-wiki.org.uk/wiki/index.php/Bookmarkable_nonBookmarkable_pages Eelco On 6/6/06, Stefan Groschupf <[EMAIL PROTECTED]> wrote: > Hi, > I

Re: [Wicket-user] CheckGroup/Check path value

2006-06-07 Thread Johan Compagner
what whould happen if you have a checkgroup inside a listview again?how would you differentiate the 2 or 3 checkgroups values?On 6/6/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hello,I'm working on some _javascript_ functionality in conjunction with CheckGroup/Check components.For this I'd re

Re: [Wicket-user] PackageResource.bind deprication

2006-06-07 Thread Eelco Hillenius
You don't have to explicitly bind shared resources anymore. See my reply to your other question. Eelco On 6/7/06, Aaron Hiniker <[EMAIL PROTECTED]> wrote: > With PackageResource.bind depricated, how can I *recursively* add files > as shared resources? > > Aaron > > > > __

[Wicket-user] PackageResource.bind deprication

2006-06-07 Thread Aaron Hiniker
With PackageResource.bind depricated, how can I *recursively* add files as shared resources? Aaron ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user

[Wicket-user] Binding package resources recursively

2006-06-07 Thread Aaron Hiniker
I am trying to bind the entire Dojo toolkit as a shared/static resource. I want to bind from the dojo/ dir and recursively add all files under it. It seems that PackageResource.bind( myApplication, MyApplication.class, Pattern.compile( "dojo" ), true ) is now a No-Op and Depricated and Package

Re: [Wicket-user] Wicket Newbie Best Practices Questions

2006-06-07 Thread Matej Knopp
> Hello all, Hi > > > > I’m just starting with Wicket and after completing my first working > Wicket WebPage & Panel, I’d love to get some feedback on how I’m going > about doing things. This is just a tech demo for me to prove > feasibility but I’m also using it to iron out some best pract

Re: [Wicket-user] Options Transfer Component?

2006-06-07 Thread Rüdiger Schulz
Hello Andreas take a look at the Palette component if this is what you expect. -- greetings from Berlin, Rüdiger Schulz [EMAIL PROTECTED] wrote on 07.06.2006 at 14:41: > Hi, > I'm new to Wicket and I > need to create an "Options Transfer" Widget. > It consists of two select boxes with opti

[Wicket-user] PageLink wanting to check model before allowing popup

2006-06-07 Thread Nino Wael
Hi I have a popup button where I want to check misc stuff on my form model before I allow the popup to actually popup the new page. I've tried to override the onClick event on the pageLink control but it still pops a page no matter what. Im not sure if I am using the correct approach. Regar

[Wicket-user] Options Transfer Component?

2006-06-07 Thread Andreas . Reimer
Hi, I'm new to Wicket and I need to create an "Options Transfer" Widget. It consists of two select boxes with options and arrow buttons to move the options from one box into the other one. Example: http://www.mattkruse.com/javascript/optiontransfer/ How can this be done in Wicket? I tried to u

Re: [Wicket-user] CheckGroup/Check path value

2006-06-07 Thread sven
I created a feature request containing the diffs. Sven >Hello, > >I'm working on some javascript functionality in conjunction with >CheckGroup/Check components. > >For this I'd really appreciate if Check would render a 'shorter' value >attribute, e.g. instead of: > > > >... just the relevant

[Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-06-07 Thread pklassen
Hi all, i started to learn about wicket. But i get confused, as more as i read. Simplicity is wickets great promice. The approach is great: Java and Html, no XML, noJSP, that sounds fantastic, but now i have to build up knowlede 'from the ground' around wickets architecture first. However, i wil