All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.uniform.common-web_2.13.5.0.0-RC6.source-code.FormFieldPresentation.scala Maven / Gradle / Ivy

The newest version!
package ltbs.uniform
package common.web

/** Controls the rendering of a field in a web form */
trait FormFieldPresentation[Html, A]{
  def render(
    key: List[String],
    path: Breadcrumbs,
    data: Option[Input],
    errors: ErrorTree,
    messages: UniformMessages[Html]
  ): Html

  def mapToType[B] = {
    val orig = this
    new FormFieldPresentation[Html, B] {
      def render(
        key: List[String],
        path: Breadcrumbs,
        data: Option[Input],
        errors: ErrorTree,
        messages: UniformMessages[Html]
      ): Html = orig.render(key, path, data, errors, messages)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy