try {
JsonLoadInput input = JsonLoadInput.parse(innerJson);
if (input != null && input.getForm() != null) {
FBForm formUI = new FBForm();
formUI.populate(input.getForm());
formDisplay.add(formUI.asFormPanel(input.getFormData()));
}
} catch (FormEncodingException e) {
Window.alert("Couldn't interpretate form: " + e.getMessage());
GWT.log("Couldn't interpretate form", e);
} catch (FormBuilderException e) {