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
Copy file name to clipboardExpand all lines: docs/index.md
+51
Original file line number
Diff line number
Diff line change
@@ -234,3 +234,54 @@ public class DemoForm implements Serializable {
234
234
235
235

236
236
237
+
### Tabs
238
+
239
+
Tabs organize content into separate views where only one view can be visible at a time. To use a this component the developer must use [@Tab](../src/main/java/io/asfjava/ui/core/form/Tab.java). The idea is to allow the developer mark which component will be in a specific tab. The properties below must be filled by the developer to render the Tab.
240
+
241
+
| Properties | Type | Usage |
242
+
| ------------- |:-------------: | :-----|
243
+
| title | String | The title of the Tab |
244
+
| index | Integer | The tab index. In most case, there more than one tab in the screen |
245
+
246
+
The example below demonstrate how to use Tab annotation.
0 commit comments