Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-10 Thread Wilhelmsen Tor Iver
hello, I have another problem, with DropDown this time. If I have only one DropDown on my page, everything works great. But when I add another DropDown to the page, with diferent datasource, the first DropDown shows data from the second datasource. All DropDowns share the same datasource.

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-10 Thread Richard Nichols
Can you post a code snippet? You have to give the datasources unique name properties, as the name is used in the client side javascript to link the component to the datasource. On 10 March 2010 01:52, danisevsky danisev...@gmail.com wrote: hello, I have another problem, with DropDown this time.

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-10 Thread danisevsky
ye, you are right.. sorry, I am stupid and forgot change the datasource name. Thank you very much. 2010/3/10 Richard Nichols r...@richardnichols.net Can you post a code snippet? You have to give the datasources unique name properties, as the name is used in the client side javascript to

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-09 Thread danisevsky
hello, I have another problem, with DropDown this time. If I have only one DropDown on my page, everything works great. But when I add another DropDown to the page, with diferent datasource, the first DropDown shows data from the second datasource. All DropDowns share the same datasource.

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-03-01 Thread danisevsky
It works great now, thank you very much!

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-28 Thread Richard Nichols
I've looked into this a bit more and it could be because Fancybox attempts to detect the content type automatically. I've made an update to visural-wicket, so that the content type is explicitly forced. I think this may fix issues such as yours where the content-type is difficult to figure out in

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-27 Thread danisevsky
thank you. I tryed this, but do not work. I think problem is that image has no .jpg suffix. I do not know, how to solve it.. :( here is the result preview: http://img5.imgup.eu/prevzfs.jpg

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-27 Thread Richard Nichols
Could it be a content type issue? I haven't served images in this way before using dynamic resource refs, but if you were doing a similar thing with a servlet then you would need to ensure the mime type was being sent as image/jpeg. If the http headers all look good, it may be a limitation of

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-25 Thread danisevsky
visural-wicket is great, thank you very much for sharing! I have one small issue, Fancybox does not calculate width of my images right. This is part of rendered html: div id=fancybox-inner style=overflow: auto; top: 10px; left: 10px; width: 1024px; height: 501px; display: block; heigh: 501px -

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-25 Thread Richard Nichols
To apply Fancybox to an image it's best to use a a href tag pointing to the image instead. Otherwise it tries to calculate based on the size of the DOM element, which might be a bit hit-and-miss (check out examples at http://fancybox.net/ also) e.g. -- markup: a href=# wicket:id=myImgMy Image

Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Richard Nichols
Hi wicket-users, I'm currently the sole developer of an open-source set of Wicket components and utilties - visural-wicket. *visural-wicket is a useful set of light-weight, loosely coupled components and utilities for the Apache Wicket web framework.* *Each component is designed to be easily

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Pedro Sena
Great Job! I was looking for a Drop Down like that. Thanks and keep the good work. Regards, On Wed, Feb 24, 2010 at 7:49 AM, Richard Nichols r...@visural.com wrote: Hi wicket-users, I'm currently the sole developer of an open-source set of Wicket components and utilties - visural-wicket.

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Roman Ilin
Nice components! I currently work on an application that should be deployed on GAE. I think I'll need some new components because wickets three and some other do not work on GAE. So I think I could commit some new components/ideas to your project as well. Regards Roman On Wed, Feb 24, 2010

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread nino martinez wael
Nice components.. Are there any costs on hosting it on GAE? I guess we should try to make examples available for wicket-stuff core there aswell but that's another discussion.. 2010/2/24 Richard Nichols r...@visural.com Hi wicket-users, I'm currently the sole developer of an open-source set of

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Roman Ilin
GAE is free up to 500MB and ~5 000 000 pages per day (I think) and some other limitations. On Wed, Feb 24, 2010 at 1:09 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: Nice components.. Are there any costs on hosting it on GAE? I guess we should try to make examples available for

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Roman Ilin
http://code.google.com/appengine/docs/quotas.html On Wed, Feb 24, 2010 at 1:12 PM, Roman Ilin roman.i...@gmail.com wrote: GAE is free up to 500MB and ~5 000 000 pages per day (I think) and some other limitations. On Wed, Feb 24, 2010 at 1:09 PM, nino martinez wael

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread nino martinez wael
Yup thats what I figured it to be too. Thanks 2010/2/24 Roman Ilin roman.i...@gmail.com http://code.google.com/appengine/docs/quotas.html On Wed, Feb 24, 2010 at 1:12 PM, Roman Ilin roman.i...@gmail.com wrote: GAE is free up to 500MB and ~5 000 000 pages per day (I think) and some

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Richard Nichols
Thanks, any ideas/contributions are welcome - I've created a discussion group, or alternatively raise an Enhancement on the google code project. GAE deployment is pretty easy - I'd suggest anyone curious about GAE deployment for Wicket download the example application WAR and check out the

AW: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Christian Hülsmeier
13:02 An: users@wicket.apache.org Betreff: Re: Announcing: visural-wicket 0.5 released - open source wicket components Nice components! I currently work on an application that should be deployed on GAE. I think I'll need some new components because wickets three and some other do

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Roman Ilin
it in a project before, but the app has not been hosted on GAE. Christian -Ursprüngliche Nachricht- Von: Roman Ilin [mailto:roman.i...@gmail.com] Gesendet: Mittwoch, 24. Februar 2010 13:02 An: users@wicket.apache.org Betreff: Re: Announcing: visural-wicket 0.5 released - open source

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread nino martinez wael
Is it this one you are talking about: http://stronglytypedblog.blogspot.com/2009/04/wicket-on-google-app-engine.html? 2010/2/24 Richard Nichols r...@richardnichols.net Thanks, any ideas/contributions are welcome - I've created a discussion group, or alternatively raise an Enhancement on the

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Richard Nichols
released - open source wicket components Nice components! I currently work on an application that should be deployed on GAE. I think I'll need some new components because wickets three and some other do not work on GAE. So I think I could commit some new components/ideas to your

Re: Announcing: visural-wicket 0.5 released - open source wicket components

2010-02-24 Thread Lionel Port
@wicket.apache.org Betreff: Re: Announcing: visural-wicket 0.5 released - open source wicket components Nice components! I currently work on an application that should be deployed on GAE. I think I'll need some new components because wickets three and some other do not work on GAE. So I