Re: Announcing: visural-wicket 0.5 released - open source wicket components
ye, you are right.. sorry, I am stupid and forgot change the datasource name. Thank you very much. 2010/3/10 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 wrote: > > 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. > > > > > > -- > Richard Nichols :: http://www.visural.com/ :: > http://www.richardnichols.net/ > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > >
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 wrote: > 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. > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
> 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. The only explanation I have is that somehow you are reusing the same underlying model for the two dropdowns... Or rather that when you configured the model for the second you overwrote configuration of the first. Remember to create new model objects. - Tor Iver - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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
It works great now, thank you very much!
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 Javascript. Try out the patch and let me know if it works for you - http://www.richardnichols.net/wp-content/uploads/2010/02/visural-wicket-0.5.1.zip On 27 February 2010 22:17, danisevsky wrote: > 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 > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 fancybox being used in this way. On 27 February 2010 22:17, danisevsky wrote: > 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 > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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
To apply Fancybox to an image it's best to use a 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: My Image Fancybox -- java: new Fancybox("myImg", ImageReferenceFactory.fromURL(""+urlFor(new ResourceReference("image"))+"?pictureId=08d7463i4mh53bavkkmr")).setGroup(group).setBoxTitle("Photo 1 of 4")); -- The example source does this type of thing also - http://visural-wicket-examples.appspot.com/app/fancybox?wicket:bookmarkablePage=:com.visural.wicket.examples.ViewSourcePage&resource=/com/visural/wicket/examples/fancybox/FancyBoxExamplePage.java HTH On 26 February 2010 08:24, danisevsky wrote: > "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: > > > > heigh: 501px - correct > width: 1024px - not correct, this is width of original image, this could be > smaller > > as a result is that Fancybox is wider then image. > > I serve images like shared resources. > > java code: > > WebMarkupContainer container = new WebMarkupContainer("img") { > �...@override > protected void onComponentTag(ComponentTag tag) { > super.onComponentTag(tag); > tag.put("src", urlFor(new ResourceReference("image")) + > "?pictureId=08d7463i4mh53bavkkmr"); > } > }; > add(container); > container.setOutputMarkupId(true); > > add(new Fancybox("image1", > container).setGroup(group).setBoxTitle("Photo 1 of 4")); > > markup: > > Image 1 > > > > > Could you gime me some advice? > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
"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: heigh: 501px - correct width: 1024px - not correct, this is width of original image, this could be smaller as a result is that Fancybox is wider then image. I serve images like shared resources. java code: WebMarkupContainer container = new WebMarkupContainer("img") { @Override protected void onComponentTag(ComponentTag tag) { super.onComponentTag(tag); tag.put("src", urlFor(new ResourceReference("image")) + "?pictureId=08d7463i4mh53bavkkmr"); } }; add(container); container.setOutputMarkupId(true); add(new Fancybox("image1", container).setGroup(group).setBoxTitle("Photo 1 of 4")); markup: Image 1 Could you gime me some advice?
Re: Announcing: visural-wicket 0.5 released - open source wicket components
Another problem with GAE is the security permissions put restrictions on serialization that break things in wicket like the cloneModel call. Some of the methods on ObjectUtils need to allow overriding the implementation to get the wicket components fully working on GAE. On Thu, Feb 25, 2010 at 10:39 AM, Richard Nichols wrote: > I think GAE is slowest when the site isn't getting much traffic - they start > JVMs on demand so low traffic often means usually means a JVM start for > every user. > > http://code.google.com/appengine/kb/java.html#What_Is_A_Loading_Request > > On 25 February 2010 08:21, Roman Ilin wrote: > >> No I haven't seen it before. >> Thank you Christian. >> It does all I need, but GAE is slow :( >> >> >> On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier >> wrote: >> > Hi Roman, >> > >> > did you try this tree component with GAE? >> > >> > http://code.google.com/p/wicket-tree/ >> > >> > I used 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 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 >> >> project as well. >> >> >> >> Regards >> >> >> >> Roman >> >> >> >> >> >> >> >> On Wed, Feb 24, 2010 at 11:53 AM, Pedro Sena >> >> wrote: >> >> > 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 >> >> wrote: >> >> > >> >> >> 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 integrated into any existing >> >> >> Wicket application with minimal dependencies.* *Other than >> >> >> components, visural-wicket includes some other utilities >> >> that assist >> >> >> in the development of Wicket applications, such as an >> >> >> annotation-based mounting system, model templates and >> >> automatic "form >> >> >> view mode" component.* >> >> >> >> >> >> The project is licensed under the *Apache 2.0* licence. >> >> The download >> >> >> package includes full source + javadocs. >> >> >> >> >> >> The project page is at >> >> http://code.google.com/p/visural-wicket/ and >> >> >> there are live examples at >> >> >> http://visural-wicket-examples.appspot.com/ >> >> >> >> >> >> I've been working on this project for around 4 months and >> >> it is now a >> >> >> mature and pretty stable set of tools for developing >> >> Wicket apps. I'm >> >> >> using it in my day-to-day work in some very large applications. >> >> >> >> >> >> I'd like to get some feedback and/or collaborators on the current >> >> >> state of the project, and hope that other members of the wicket >> >> >> community may find these components and utilities useful. >> >> >> >> >> >> cheers, >> >> >> Rich. >> >> >> >> >> >> -- >> >> >> Richard Nichols :: http://www.visural.com/ :: >> >> >> http://www.richardnichols.net/ >> >> >> >> >> > >> >> > >> >> > >> >> > -- >> >> > /** >> >> > * Pedro Sena >> >> > * Systems Architect >> >> > * Sun Certified Java Programmer >> >> > * Sun Certified Web Component Developer */ >> >> > >> >> >> >> - >> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> >> For additional commands, e-mail: users-h...@wicket.apache.org >> >> >> >> >> >> >> > >> > >> > - >> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> > For additional commands, e-mail: users-h...@wicket.apache.org >> > >> > >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> >> > > > -- > Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/ > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
I think GAE is slowest when the site isn't getting much traffic - they start JVMs on demand so low traffic often means usually means a JVM start for every user. http://code.google.com/appengine/kb/java.html#What_Is_A_Loading_Request On 25 February 2010 08:21, Roman Ilin wrote: > No I haven't seen it before. > Thank you Christian. > It does all I need, but GAE is slow :( > > > On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier > wrote: > > Hi Roman, > > > > did you try this tree component with GAE? > > > > http://code.google.com/p/wicket-tree/ > > > > I used 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 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 > >> project as well. > >> > >> Regards > >> > >> Roman > >> > >> > >> > >> On Wed, Feb 24, 2010 at 11:53 AM, Pedro Sena > >> wrote: > >> > 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 > >> wrote: > >> > > >> >> 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 integrated into any existing > >> >> Wicket application with minimal dependencies.* *Other than > >> >> components, visural-wicket includes some other utilities > >> that assist > >> >> in the development of Wicket applications, such as an > >> >> annotation-based mounting system, model templates and > >> automatic "form > >> >> view mode" component.* > >> >> > >> >> The project is licensed under the *Apache 2.0* licence. > >> The download > >> >> package includes full source + javadocs. > >> >> > >> >> The project page is at > >> http://code.google.com/p/visural-wicket/ and > >> >> there are live examples at > >> >> http://visural-wicket-examples.appspot.com/ > >> >> > >> >> I've been working on this project for around 4 months and > >> it is now a > >> >> mature and pretty stable set of tools for developing > >> Wicket apps. I'm > >> >> using it in my day-to-day work in some very large applications. > >> >> > >> >> I'd like to get some feedback and/or collaborators on the current > >> >> state of the project, and hope that other members of the wicket > >> >> community may find these components and utilities useful. > >> >> > >> >> cheers, > >> >> Rich. > >> >> > >> >> -- > >> >> Richard Nichols :: http://www.visural.com/ :: > >> >> http://www.richardnichols.net/ > >> >> > >> > > >> > > >> > > >> > -- > >> > /** > >> > * Pedro Sena > >> > * Systems Architect > >> > * Sun Certified Java Programmer > >> > * Sun Certified Web Component Developer */ > >> > > >> > >> - > >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > >> For additional commands, e-mail: users-h...@wicket.apache.org > >> > >> > >> > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 > 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 > appengine-cfg.xml and the main Wicket application class, that's pretty much > all the customisation required. > > On 24 February 2010 23:01, Roman Ilin wrote: > > > 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 at 11:53 AM, Pedro Sena > wrote: > > > 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 > wrote: > > > > > >> 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 integrated into any existing > > >> Wicket > > >> application with minimal dependencies.* > > >> *Other than components, visural-wicket includes some other utilities > > that > > >> assist in the development of Wicket applications, such as an > > >> annotation-based mounting system, model templates and automatic "form > > view > > >> mode" component.* > > >> > > >> The project is licensed under the *Apache 2.0* licence. The download > > >> package > > >> includes full source + javadocs. > > >> > > >> The project page is at http://code.google.com/p/visural-wicket/ and > > there > > >> are live examples at http://visural-wicket-examples.appspot.com/ > > >> > > >> I've been working on this project for around 4 months and it is now a > > >> mature > > >> and pretty stable set of tools for developing Wicket apps. I'm using > it > > in > > >> my day-to-day work in some very large applications. > > >> > > >> I'd like to get some feedback and/or collaborators on the current > state > > of > > >> the project, and hope that other members of the wicket community may > > find > > >> these components and utilities useful. > > >> > > >> cheers, > > >> Rich. > > >> > > >> -- > > >> Richard Nichols :: http://www.visural.com/ :: > > >> http://www.richardnichols.net/ > > >> > > > > > > > > > > > > -- > > > /** > > > * Pedro Sena > > > * Systems Architect > > > * Sun Certified Java Programmer > > > * Sun Certified Web Component Developer > > > */ > > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > > For additional commands, e-mail: users-h...@wicket.apache.org > > > > > > > -- > Richard Nichols :: http://www.visural.com/ :: > http://www.richardnichols.net/ >
Re: Announcing: visural-wicket 0.5 released - open source wicket components
No I haven't seen it before. Thank you Christian. It does all I need, but GAE is slow :( On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier wrote: > Hi Roman, > > did you try this tree component with GAE? > > http://code.google.com/p/wicket-tree/ > > I used 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 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 >> project as well. >> >> Regards >> >> Roman >> >> >> >> On Wed, Feb 24, 2010 at 11:53 AM, Pedro Sena >> wrote: >> > 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 >> wrote: >> > >> >> 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 integrated into any existing >> >> Wicket application with minimal dependencies.* *Other than >> >> components, visural-wicket includes some other utilities >> that assist >> >> in the development of Wicket applications, such as an >> >> annotation-based mounting system, model templates and >> automatic "form >> >> view mode" component.* >> >> >> >> The project is licensed under the *Apache 2.0* licence. >> The download >> >> package includes full source + javadocs. >> >> >> >> The project page is at >> http://code.google.com/p/visural-wicket/ and >> >> there are live examples at >> >> http://visural-wicket-examples.appspot.com/ >> >> >> >> I've been working on this project for around 4 months and >> it is now a >> >> mature and pretty stable set of tools for developing >> Wicket apps. I'm >> >> using it in my day-to-day work in some very large applications. >> >> >> >> I'd like to get some feedback and/or collaborators on the current >> >> state of the project, and hope that other members of the wicket >> >> community may find these components and utilities useful. >> >> >> >> cheers, >> >> Rich. >> >> >> >> -- >> >> Richard Nichols :: http://www.visural.com/ :: >> >> http://www.richardnichols.net/ >> >> >> > >> > >> > >> > -- >> > /** >> > * Pedro Sena >> > * Systems Architect >> > * Sun Certified Java Programmer >> > * Sun Certified Web Component Developer */ >> > >> >> - >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org >> For additional commands, e-mail: users-h...@wicket.apache.org >> >> >> > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
AW: Announcing: visural-wicket 0.5 released - open source wicket components
Hi Roman, did you try this tree component with GAE? http://code.google.com/p/wicket-tree/ I used 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 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 > project as well. > > Regards > > Roman > > > > On Wed, Feb 24, 2010 at 11:53 AM, Pedro Sena > wrote: > > 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 > wrote: > > > >> 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 integrated into any existing > >> Wicket application with minimal dependencies.* *Other than > >> components, visural-wicket includes some other utilities > that assist > >> in the development of Wicket applications, such as an > >> annotation-based mounting system, model templates and > automatic "form > >> view mode" component.* > >> > >> The project is licensed under the *Apache 2.0* licence. > The download > >> package includes full source + javadocs. > >> > >> The project page is at > http://code.google.com/p/visural-wicket/ and > >> there are live examples at > >> http://visural-wicket-examples.appspot.com/ > >> > >> I've been working on this project for around 4 months and > it is now a > >> mature and pretty stable set of tools for developing > Wicket apps. I'm > >> using it in my day-to-day work in some very large applications. > >> > >> I'd like to get some feedback and/or collaborators on the current > >> state of the project, and hope that other members of the wicket > >> community may find these components and utilities useful. > >> > >> cheers, > >> Rich. > >> > >> -- > >> Richard Nichols :: http://www.visural.com/ :: > >> http://www.richardnichols.net/ > >> > > > > > > > > -- > > /** > > * Pedro Sena > > * Systems Architect > > * Sun Certified Java Programmer > > * Sun Certified Web Component Developer */ > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 appengine-cfg.xml and the main Wicket application class, that's pretty much all the customisation required. On 24 February 2010 23:01, Roman Ilin wrote: > 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 at 11:53 AM, Pedro Sena wrote: > > 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 wrote: > > > >> 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 integrated into any existing > >> Wicket > >> application with minimal dependencies.* > >> *Other than components, visural-wicket includes some other utilities > that > >> assist in the development of Wicket applications, such as an > >> annotation-based mounting system, model templates and automatic "form > view > >> mode" component.* > >> > >> The project is licensed under the *Apache 2.0* licence. The download > >> package > >> includes full source + javadocs. > >> > >> The project page is at http://code.google.com/p/visural-wicket/ and > there > >> are live examples at http://visural-wicket-examples.appspot.com/ > >> > >> I've been working on this project for around 4 months and it is now a > >> mature > >> and pretty stable set of tools for developing Wicket apps. I'm using it > in > >> my day-to-day work in some very large applications. > >> > >> I'd like to get some feedback and/or collaborators on the current state > of > >> the project, and hope that other members of the wicket community may > find > >> these components and utilities useful. > >> > >> cheers, > >> Rich. > >> > >> -- > >> Richard Nichols :: http://www.visural.com/ :: > >> http://www.richardnichols.net/ > >> > > > > > > > > -- > > /** > > * Pedro Sena > > * Systems Architect > > * Sun Certified Java Programmer > > * Sun Certified Web Component Developer > > */ > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > > -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/
Re: Announcing: visural-wicket 0.5 released - open source wicket components
Yup thats what I figured it to be too. Thanks 2010/2/24 Roman Ilin > http://code.google.com/appengine/docs/quotas.html > > > > > On Wed, Feb 24, 2010 at 1:12 PM, Roman Ilin 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 > > wrote: > >> 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 > >> > >>> 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 integrated into any existing > >>> Wicket > >>> application with minimal dependencies.* > >>> *Other than components, visural-wicket includes some other utilities > that > >>> assist in the development of Wicket applications, such as an > >>> annotation-based mounting system, model templates and automatic "form > view > >>> mode" component.* > >>> > >>> The project is licensed under the *Apache 2.0* licence. The download > >>> package > >>> includes full source + javadocs. > >>> > >>> The project page is at http://code.google.com/p/visural-wicket/ and > there > >>> are live examples at http://visural-wicket-examples.appspot.com/ > >>> > >>> I've been working on this project for around 4 months and it is now a > >>> mature > >>> and pretty stable set of tools for developing Wicket apps. I'm using it > in > >>> my day-to-day work in some very large applications. > >>> > >>> I'd like to get some feedback and/or collaborators on the current state > of > >>> the project, and hope that other members of the wicket community may > find > >>> these components and utilities useful. > >>> > >>> cheers, > >>> Rich. > >>> > >>> -- > >>> Richard Nichols :: http://www.visural.com/ :: > >>> http://www.richardnichols.net/ > >>> > >> > > > > - > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org > For additional commands, e-mail: users-h...@wicket.apache.org > >
Re: Announcing: visural-wicket 0.5 released - open source wicket components
http://code.google.com/appengine/docs/quotas.html On Wed, Feb 24, 2010 at 1:12 PM, Roman Ilin 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 > wrote: >> 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 >> >>> 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 integrated into any existing >>> Wicket >>> application with minimal dependencies.* >>> *Other than components, visural-wicket includes some other utilities that >>> assist in the development of Wicket applications, such as an >>> annotation-based mounting system, model templates and automatic "form view >>> mode" component.* >>> >>> The project is licensed under the *Apache 2.0* licence. The download >>> package >>> includes full source + javadocs. >>> >>> The project page is at http://code.google.com/p/visural-wicket/ and there >>> are live examples at http://visural-wicket-examples.appspot.com/ >>> >>> I've been working on this project for around 4 months and it is now a >>> mature >>> and pretty stable set of tools for developing Wicket apps. I'm using it in >>> my day-to-day work in some very large applications. >>> >>> I'd like to get some feedback and/or collaborators on the current state of >>> the project, and hope that other members of the wicket community may find >>> these components and utilities useful. >>> >>> cheers, >>> Rich. >>> >>> -- >>> Richard Nichols :: http://www.visural.com/ :: >>> http://www.richardnichols.net/ >>> >> > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 wrote: > 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 > >> 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 integrated into any existing >> Wicket >> application with minimal dependencies.* >> *Other than components, visural-wicket includes some other utilities that >> assist in the development of Wicket applications, such as an >> annotation-based mounting system, model templates and automatic "form view >> mode" component.* >> >> The project is licensed under the *Apache 2.0* licence. The download >> package >> includes full source + javadocs. >> >> The project page is at http://code.google.com/p/visural-wicket/ and there >> are live examples at http://visural-wicket-examples.appspot.com/ >> >> I've been working on this project for around 4 months and it is now a >> mature >> and pretty stable set of tools for developing Wicket apps. I'm using it in >> my day-to-day work in some very large applications. >> >> I'd like to get some feedback and/or collaborators on the current state of >> the project, and hope that other members of the wicket community may find >> these components and utilities useful. >> >> cheers, >> Rich. >> >> -- >> Richard Nichols :: http://www.visural.com/ :: >> http://www.richardnichols.net/ >> > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 > 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 integrated into any existing > Wicket > application with minimal dependencies.* > *Other than components, visural-wicket includes some other utilities that > assist in the development of Wicket applications, such as an > annotation-based mounting system, model templates and automatic "form view > mode" component.* > > The project is licensed under the *Apache 2.0* licence. The download > package > includes full source + javadocs. > > The project page is at http://code.google.com/p/visural-wicket/ and there > are live examples at http://visural-wicket-examples.appspot.com/ > > I've been working on this project for around 4 months and it is now a > mature > and pretty stable set of tools for developing Wicket apps. I'm using it in > my day-to-day work in some very large applications. > > I'd like to get some feedback and/or collaborators on the current state of > the project, and hope that other members of the wicket community may find > these components and utilities useful. > > cheers, > Rich. > > -- > Richard Nichols :: http://www.visural.com/ :: > http://www.richardnichols.net/ >
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 think I could commit some new components/ideas to your project as well. Regards Roman On Wed, Feb 24, 2010 at 11:53 AM, Pedro Sena wrote: > 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 wrote: > >> 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 integrated into any existing >> Wicket >> application with minimal dependencies.* >> *Other than components, visural-wicket includes some other utilities that >> assist in the development of Wicket applications, such as an >> annotation-based mounting system, model templates and automatic "form view >> mode" component.* >> >> The project is licensed under the *Apache 2.0* licence. The download >> package >> includes full source + javadocs. >> >> The project page is at http://code.google.com/p/visural-wicket/ and there >> are live examples at http://visural-wicket-examples.appspot.com/ >> >> I've been working on this project for around 4 months and it is now a >> mature >> and pretty stable set of tools for developing Wicket apps. I'm using it in >> my day-to-day work in some very large applications. >> >> I'd like to get some feedback and/or collaborators on the current state of >> the project, and hope that other members of the wicket community may find >> these components and utilities useful. >> >> cheers, >> Rich. >> >> -- >> Richard Nichols :: http://www.visural.com/ :: >> http://www.richardnichols.net/ >> > > > > -- > /** > * Pedro Sena > * Systems Architect > * Sun Certified Java Programmer > * Sun Certified Web Component Developer > */ > - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Announcing: visural-wicket 0.5 released - open source wicket components
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 wrote: > 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 integrated into any existing > Wicket > application with minimal dependencies.* > *Other than components, visural-wicket includes some other utilities that > assist in the development of Wicket applications, such as an > annotation-based mounting system, model templates and automatic "form view > mode" component.* > > The project is licensed under the *Apache 2.0* licence. The download > package > includes full source + javadocs. > > The project page is at http://code.google.com/p/visural-wicket/ and there > are live examples at http://visural-wicket-examples.appspot.com/ > > I've been working on this project for around 4 months and it is now a > mature > and pretty stable set of tools for developing Wicket apps. I'm using it in > my day-to-day work in some very large applications. > > I'd like to get some feedback and/or collaborators on the current state of > the project, and hope that other members of the wicket community may find > these components and utilities useful. > > cheers, > Rich. > > -- > Richard Nichols :: http://www.visural.com/ :: > http://www.richardnichols.net/ > -- /** * Pedro Sena * Systems Architect * Sun Certified Java Programmer * Sun Certified Web Component Developer */
Announcing: visural-wicket 0.5 released - open source wicket components
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 integrated into any existing Wicket application with minimal dependencies.* *Other than components, visural-wicket includes some other utilities that assist in the development of Wicket applications, such as an annotation-based mounting system, model templates and automatic "form view mode" component.* The project is licensed under the *Apache 2.0* licence. The download package includes full source + javadocs. The project page is at http://code.google.com/p/visural-wicket/ and there are live examples at http://visural-wicket-examples.appspot.com/ I've been working on this project for around 4 months and it is now a mature and pretty stable set of tools for developing Wicket apps. I'm using it in my day-to-day work in some very large applications. I'd like to get some feedback and/or collaborators on the current state of the project, and hope that other members of the wicket community may find these components and utilities useful. cheers, Rich. -- Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/