I think this is similar to what I'm trying to do. Are there any details of this implementation?

http://www.wicket-wiki.org.uk/wiki/index.php/Forms_with_dynamic_elements

Cheers,
-js


On 10/18/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote:
I'm a UI developer on a team of about 10 and are in the evaulation process of wicket. Pardon my ignorance if this is obvious or misses the boat...

How complex would it be to provide a jar of components to our developers that they can use to build their interfaces without having to touch HTML? The goal would be that they would build the application without having to write any HTML but simply "append" components to each other similar to how you can with the DOM browser side. Our AppBasePage would then have a <wicket:child/> tag which is where it would render these components. Does this make sense?

Example Components:
- Form
- FieldSet
- FieldPair
- SaveButton


Developers would then:

class MyPage extends AppBaseBase {
    public MyPage() {
        Form f = new Form("myForm");
        f.add(new SaveButton("id", "Label"));
        add(f);
    }
}


Cheers,
-js

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to