You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Christian Hülsmeier <wi...@christianhuelsmeier.de> on 2010/02/24 22:07:02 UTC

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.ilin@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 
> <se...@gmail.com> 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 
> <rn...@visural.com> 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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by Wilhelmsen Tor Iver <To...@arrive.no>.
> 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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by danisevsky <da...@gmail.com>.
yessss, you are right.. sorry, I am stupid and forgot change the datasource
name. Thank you very much.

2010/3/10 Richard Nichols <rn...@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 link the component to the
> datasource.
>
> On 10 March 2010 01:52, danisevsky <da...@gmail.com> 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-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

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

Posted by Richard Nichols <rn...@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 link the component to the
datasource.

On 10 March 2010 01:52, danisevsky <da...@gmail.com> 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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by danisevsky <da...@gmail.com>.
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

Posted by danisevsky <da...@gmail.com>.
It works great now, thank you very much!

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

Posted by Richard Nichols <rn...@richardnichols.net>.
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 <da...@gmail.com> 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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by Richard Nichols <rn...@richardnichols.net>.
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 <da...@gmail.com> 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-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by danisevsky <da...@gmail.com>.
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

Posted by Richard Nichols <rn...@richardnichols.net>.
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="myImg">My Image Fancybox</a>

-- 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 <da...@gmail.com> 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:
>
> <div id="fancybox-inner" style="overflow: auto; top: 10px; left: 10px;
> width: 1024px; height: 501px; display: block;">
>
> 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:
>
>        <a class="button" href="#" wicket:id="image1">Image 1</a>
>        <div style="display: none;">
>             <img style="height:100%;" wicket:id="img"/>
>        </div>
>
> Could you gime me some advice?
>



-- 
Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by danisevsky <da...@gmail.com>.
"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 - 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:

        <a class="button" href="#" wicket:id="image1">Image 1</a>
        <div style="display: none;">
             <img style="height:100%;" wicket:id="img"/>
        </div>

Could you gime me some advice?

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

Posted by Lionel Port <li...@gmail.com>.
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 <rn...@richardnichols.net> 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 <ro...@gmail.com> wrote:
>
>> No I haven't seen it before.
>> Thank you Christian.
>> It does all I need, but GAE is slooooooooow :(
>>
>>
>> On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier
>> <wi...@christianhuelsmeier.de> 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.ilin@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
>> >> <se...@gmail.com> 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
>> >> <rn...@visural.com> 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-unsubscribe@wicket.apache.org
>> >> For additional commands, e-mail: users-help@wicket.apache.org
>> >>
>> >>
>> >>
>> >
>> >
>> > ---------------------------------------------------------------------
>> > To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> > For additional commands, e-mail: users-help@wicket.apache.org
>> >
>> >
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>
>
>
> --
> Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


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

Posted by Richard Nichols <rn...@richardnichols.net>.
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 <ro...@gmail.com> wrote:

> No I haven't seen it before.
> Thank you Christian.
> It does all I need, but GAE is slooooooooow :(
>
>
> On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier
> <wi...@christianhuelsmeier.de> 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.ilin@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
> >> <se...@gmail.com> 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
> >> <rn...@visural.com> 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-unsubscribe@wicket.apache.org
> >> For additional commands, e-mail: users-help@wicket.apache.org
> >>
> >>
> >>
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> > For additional commands, e-mail: users-help@wicket.apache.org
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>


-- 
Richard Nichols :: http://www.visural.com/ :: http://www.richardnichols.net/

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

Posted by Roman Ilin <ro...@gmail.com>.
No I haven't seen it before.
Thank you Christian.
It does all I need, but GAE is slooooooooow :(


On Wed, Feb 24, 2010 at 10:07 PM, Christian Hülsmeier
<wi...@christianhuelsmeier.de> 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.ilin@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
>> <se...@gmail.com> 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
>> <rn...@visural.com> 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-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org