class Form(val title: Option[String], val rows: Seq[Row], val result: Option[Result]) extends Executable with Text
A Form is a container for Rows (@see Row) where each row contain some Cell (@see Cell). It has an optional title and possibly no rows.
A Form can be executed by executing each row and collecting the results.
- Companion
- object
Value members
Concrete methods
transform this form to a form that will be added as a <td> element inside another form
transform this form to a form that will be added as a <td> element inside another form
def subset[T1, T2](f1: Seq[T1], f2: Seq[T2])(using evidence$1: HasForm[T1], evidence$2: HasForm[T2]): Form