[Wicket-user] create a photoalbum page

2006-03-25 Thread Potje rode kool
Hi,Just got started with Wicket and got an question about it.I want to create a photoalbum page where I want to display some images and text like this. Not every page will have the same number of images (plus text), so one page may have 12 but the other just 2.How to do this with Wicket?Thanks for

Re: [Wicket-user] create a photoalbum page

2006-03-25 Thread Potje rode kool
a listview (or dataview or ...) component and provide that component with the list of images.Martijn On 3/25/06, Potje rode kool [EMAIL PROTECTED] wrote: Hi,Just got started with Wicket and got an question about it.I want to create a photoalbum page where I want to display some images and text like

[Wicket-user] links problems again

2006-04-04 Thread Potje rode kool
Just updated to wicket 1.2 beta 3 but I still have link problems all over the place.If I use wicket:link the links work only correctly if the pages where they point to are in the same package.I also got problems with working with tabs (using the TabbedPanel from wicket extensions), if I put links

Re: [Wicket-user] links problems again

2006-04-06 Thread Potje rode kool
or subclass WicketLinkTagHandler and implement any behavior you want. i tested tabbed panels here and they work fine. if you want, create a quickstart project that reproduces the error and attach it to the list, i will take a look. -Igor On 4/4/06, Potje rode kool [EMAIL PROTECTED] wrote: Just updated

Re: [Wicket-user] links problems again

2006-04-07 Thread Potje rode kool
Vaynberg [EMAIL PROTECTED]: see mountPackage in webapplication and nice url example for details.your urls will look something like this:/context/mount/Index/context/adminmount/Index -Igor On 4/6/06, Potje rode kool [EMAIL PROTECTED] wrote: I created a new project with a TabbedPanel and it worked

[Wicket-user] how to create a reusable subclass of Form

2006-04-08 Thread Potje rode kool
Hi,I want to create an abstract subclass of Form which contains some components like TextField.I want to do this becourse I have some forms that are very simular.How to do this?Thanks

[Wicket-user] replace a component by clicking on an Ajax link.

2006-05-03 Thread Potje rode kool
Hi,I have a page with some links on the left side of the page, on the right side of the page I want to display a form.Depend on which link is clicked I want to display another form (so replace the old form by a new one). While working with normal links this is no problem but I wanted to use ajax

Re: [Wicket-user] replace a component by clicking on an Ajax link.

2006-05-03 Thread Potje rode kool
panel = new MyPanel1(panel); getPage().replace(panel); target.addComponent(panel); } }); } }On 5/3/06, Potje rode kool [EMAIL PROTECTED] wrote: Hi,I have a page with some links on the left side of the page, on the right side of the page I want to display a form.Depend on which link is clicked I want

[Wicket-user] use images in pagingNavigator

2006-05-05 Thread Potje rode kool
Hi,I have a page with a AjaxPagingNavigator which I use with a PageableListView to display some thumbnales of images,all working ok but I want to display an image (as a link) instead of the arrows (like or ), but how to do this? I am a bit lost on that. Thanks,Evert

[Wicket-user] changing images with Ajax

2006-05-06 Thread Potje rode kool
Hi,I am trying to change an image after an AjaxLink is clicked but I can't get it working.The images are on a Panel, when I click on the AjaxLink I create a new Panel and replace the old one (by calling getPage().replace(Component) ). I also have put an Label on the Panel and the Label gets

Re: [Wicket-user] changing images with Ajax

2006-05-07 Thread Potje rode kool
?foo=bar1, bar2, bar3... etc. The browser cache resources per URL. I think this will work.See ya On 5/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: well, if the browser ignores that then you should change the url.-Igor On 5/7/06, Potje rode kool [EMAIL PROTECTED] wrote:Yes, its a caching problem

Re: [Wicket-user] changing images with Ajax

2006-05-08 Thread Potje rode kool
... etc. The browser cache resources per URL. I think this will work. See ya On 5/7/06, Igor Vaynberg [EMAIL PROTECTED] wrote: well, if the browser ignores that then you should change the url.-Igor On 5/7/06, Potje rode kool [EMAIL PROTECTED] wrote:Yes, its a caching problem, when I disable

Re: [Wicket-user] changing images with Ajax

2006-05-08 Thread Potje rode kool
;" src=""> tag.set(src, src);}; if it works you can encapsulate it into a NonCachingImage or something-Igor On 5/8/06, Potje rode kool [EMAIL PROTECTED] wrote:How are you adding those parameters the the image URL? In html I have an image tag like this:img wicket:id=image/and in

Re: [Wicket-user] Broadest appeal for Wicket

2006-05-23 Thread Potje rode kool
I think its more what you are used to(what you prefer), I am working for some few months with .Net 2.0 with vs.net 2005 but I never got the fealing that I got something with vs.net that I didn't have with Eclipse. But great things happening with Netbeans, with Matise and Jackpot. With .Net you

[Wicket-user] How to use effects.js from wicket-examples?

2006-06-19 Thread Potje rode kool
Hi in wicket-examples there is an js called effects.js but wicket-examples doesn't contain an example how to use this js.These effects like Element.setOpacity and Effect.Scale look interestion but how do I use they, can someone can give some example? Thanks,Evert

Re: [Wicket-user] wicket developer job opening

2006-06-27 Thread Potje rode kool
But what about the Frisian language ? is that ok too? ;)I will look into the job and your company to look if it is interestion, finished off my school (Hanze University Groningen) yesterday and I am am a bachelor now. Will send my cv later this week. Evert 2006/6/27, Martijn Dashorst [EMAIL

Re: [Wicket-user] Wicketesque on .Net

2006-07-29 Thread Potje rode kool
I think the only framework that is a bit comparable is atlas (it has some ajax stuff) http://atlas.asp.net/Default.aspx?tabid=47There is not much choice in the .Net world, at least that is my impression, then in the Java world. 2006/7/29, Julian Klappenbach [EMAIL PROTECTED]: I currenly

[Wicket-user] edit xhtml Wicket files in Eclipse?

2006-11-12 Thread Potje rode kool
I want to use xhtml with Wicket but fail to let it work correctly, that the editor finds the tags from the wicket dtd.I am using Eclipse as IDE to develop. Any one who has an idea or experience with this?Thanks - Using Tomcat

Re: [Wicket-user] edit xhtml Wicket files in Eclipse?

2006-11-14 Thread Potje rode kool
the Amateras editor, you just need to disable validation:- Right-click your project, select Properties- Browse to the Amateras tab- Uncheck XML Validation and Code Completion using DTD/XML schema and HTML Validation--CharlieOn 11/12/06, Potje rode kool [EMAIL PROTECTED] wrote: I want to use xhtml