body = new TextArea("body", new PropertyModel(requestModel, "requestBody"));
// force the id otherwise this blasted thing won't be usable from other forms
body.setMarkupId("requestBody");
body.setOutputMarkupId(true);
body.add(new EditAreaBehavior());
demoRequestsForm.add(body);
username = new TextField("username", new PropertyModel(requestModel, "userName"));
demoRequestsForm.add(username);