You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@TextArea(title="Address", placeHolder="Fill your address please", description="This is a textarea")
90
+
privateString address;
91
+
92
+
publicStringgetFirstName() {
93
+
return firstName;
94
+
}
95
+
96
+
publicvoidsetFirstName(StringfirstName) {
97
+
this.firstName = firstName;
98
+
}
99
+
100
+
publicStringgetLastName() {
101
+
return lastName;
102
+
}
103
+
104
+
publicvoidsetLastName(StringlastName) {
105
+
this.lastName = lastName;
106
+
}
107
+
108
+
publicStringgetGender() {
109
+
return gender;
110
+
}
111
+
112
+
publicStringgetAddress() {
113
+
return address;
114
+
}
115
+
116
+
publicvoidsetAddress(Stringaddress) {
117
+
this.address = address;
118
+
}
119
+
120
+
}
121
+
```
122
+
### Front
123
+
124
+
First, add to your java web project the required client side library in order to use [json schema form](https://github.com/json-schema-form).
125
+
After, inject the json schema form into your html page and add your Js controller to call the backend.
126
+
127
+
For the example below we will use [Angular schema form](https://github.com/json-schema-form/angular-schema-form). You can follow the official [documentation](https://github.com/json-schema-form/angular-schema-form#documentation).
SF Java UI uses GitHub’s integrated issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:
156
+
157
+
- Before you log a bug, please [search the issue tracker](https://github.com/JsonSchema-JavaUI/sf-java-ui/search?type=Issues) to see if someone has already reported the problem.
158
+
159
+
- If the issue doesn’t already exist, [create a new issue](https://github.com/JsonSchema-JavaUI/sf-java-ui/issues/new).
160
+
161
+
- Please provide as much information as possible with the issue report, we like to know the version of Spring Boot that you are using, as well as your Operating System and JVM version.
162
+
163
+
- If you need to paste code, or include a stack trace use Markdown \``` escapes before and after your text.
164
+
28
165
## Contributing
29
166
Contributions are welcome! Please see [Contributing.md](CONTRIBUTING.md) for more info.
0 commit comments