()
| 125 | } |
| 126 | |
| 127 | formSandbox() { |
| 128 | return ( |
| 129 | <FormSandbox formDefinition={this.state.formDefinition} |
| 130 | formEncoding={this.state.formEncoding} |
| 131 | validate={this.state.validate} |
| 132 | onValidated={data => this.onValidated(data)} |
| 133 | onError={error => this.onFormSandboxError(error)} |
| 134 | onResize={() => this.onResize()} /> |
| 135 | ); |
| 136 | } |
| 137 | |
| 138 | render() { |
| 139 | if (this.state.waiting) { |