-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce6cabe
commit 3262c72
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Quick classes | ||
|
||
There are some UI components, like tables, that require a lot of elements: TableContainer, TBody, Tr, Th etc. `Quick*` classes | ||
simplify creation of this components. | ||
|
||
## QuickTable | ||
|
||
```scala | ||
val conversionTable = QuickTable().headers("To convert", "into", "multiply by") | ||
.caption("Imperial to metric conversion factors") | ||
val tableRows:Seq[Seq[String]] = Seq( | ||
Seq("inches","millimetres (mm)","25.4"), | ||
... | ||
) | ||
conversionTable.rows(tableRows) | ||
``` |