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 [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
