package table
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- final case class HeadCell(content: Content = Empty, format: Option[String] = None, classes: String = "", colspan: Option[Int] = None, rowspan: Option[Int] = None, attributes: Map[String, String] = Map.empty) extends Product with Serializable
- case class Table(rows: Seq[Seq[TableRow]] = Nil, head: Option[Seq[HeadCell]] = None, caption: Option[String] = None, captionClasses: String = "", firstCellIsHeader: Boolean = false, classes: String = "", attributes: Map[String, String] = Map.empty) extends Product with Serializable
- final case class TableRow(content: Content = Empty, format: Option[String] = None, classes: String = "", colspan: Option[Int] = None, rowspan: Option[Int] = None, attributes: Map[String, String] = Map.empty) extends Product with Serializable