Package

views.html

b3

Permalink

package b3

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. b3
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait B3FieldConstructor extends BSFieldConstructor[B3FieldInfo]

    Permalink

    Custom FieldConstructor for the library.

    Custom FieldConstructor for the library. Every FieldConstructor must extend this functionality.

  2. case class B3FieldInfo(field: Field, withFeedback: Boolean, withLabelFor: Boolean, args: Seq[(Symbol, Any)], msgsProv: MessagesProvider) extends BSFieldInfo with Product with Serializable

    Permalink

    Class with relevant variables for a field to pass it to the helper and field constructor - withFeedbak: indicates if the feedback icons are allowed - withLabelFor: indicates if the label's "for" attribute should be shown - args: list of available arguments for the helper and field constructor

  3. case class B3MultifieldInfo(fields: Seq[Field], globalArguments: Seq[(Symbol, Any)], fieldsArguments: Seq[(Symbol, Any)], msgsProv: MessagesProvider) extends BSMultifieldInfo with Product with Serializable

    Permalink

    Class with relevant variables for the global information of a multifield - fields: list of Fields - args: list of available arguments for the helper and the form-group

Value Members

  1. object B3FieldInfo extends Serializable

    Permalink

    Companion object for class B3FieldInfo

  2. object bsFieldConstructorCommon extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[B3FieldInfo, Html, (Html) ⇒ Html, B3FieldConstructor, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  3. object bsFormGroupCommon extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Html, Map[Symbol, Any], (Html) ⇒ Html, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  4. def button(args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  5. object buttonType extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[String, Array[(Symbol, Any)], Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  6. object checkbox extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Field, Array[(Symbol, Any)], B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  7. package clear

    Permalink
  8. def color(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  9. def date(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  10. def datetime(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  11. def datetimeLocal(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  12. def email(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  13. object file extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Field, Array[(Symbol, Any)], B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  14. object form extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Call, Array[(Symbol, Any)], Html, B3FieldConstructor, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  15. object formCSRF extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Call, Array[(Symbol, Any)], Html, B3FieldConstructor, RequestHeader, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  16. def free(args: (Symbol, Any)*)(content: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): Html

    Permalink
  17. def freeFormGroup(args: Seq[(Symbol, Any)])(contentDef: (Map[Symbol, Any]) ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): Html

    Permalink

    Renders a form-group using the B3FieldConstructor.

    Renders a form-group using the B3FieldConstructor. - args: list of available arguments for the helper and the form-group - contentDef: function that returns a Html from a map of arguments

  18. def hidden(field: Field, args: (Symbol, Any)*): play.twirl.api.HtmlFormat.Appendable

    Permalink
  19. def hidden(name: String, value: Any, args: (Symbol, Any)*): play.twirl.api.HtmlFormat.Appendable

    Permalink
  20. object hiddenInput extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template3[Any, Any, Array[(Symbol, Any)], play.twirl.api.HtmlFormat.Appendable]

    Permalink
  21. object hiddens extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template1[Array[(Any, Any)], play.twirl.api.HtmlFormat.Appendable]

    Permalink
  22. package horizontal

    Permalink
  23. package inline

    Permalink
  24. def inputFormGroup(field: Field, withFeedback: Boolean, withLabelFor: Boolean, args: Seq[(Symbol, Any)])(inputDef: (B3FieldInfo) ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): Html

    Permalink

    Renders an input form-group using the B3FieldConstructor.

    Renders an input form-group using the B3FieldConstructor. - withFeedbak: indicates if the feedback icons are allowed - withLabelFor: indicates if the label's "for" attribute should be shown - args: list of available arguments for the helper and field constructor - inputDef: function that returns a Html from a B3FieldInfo that contains all the information about the field

  25. def inputType(inputType: String, field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink

    ********************************************************************************************************************************** SHORTCUT HELPERS *********************************************************************************************************************************

  26. object inputWrapped extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template6[String, Field, Array[(Symbol, Any)], (Html) ⇒ Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  27. def month(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  28. object multifield extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template6[Array[Field], Seq[(Symbol, Any)], Seq[(Symbol, Any)], (ClearFieldConstructor) ⇒ Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  29. def multifieldFormGroup(fields: Seq[Field], globalArgs: Seq[(Symbol, Any)], fieldsArgs: Seq[(Symbol, Any)])(contentDef: (B3MultifieldInfo) ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): Html

    Permalink
  30. def number(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  31. def password(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  32. def radio(field: Field, options: Seq[(String, Any)], args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  33. def radio(field: Field, args: (Symbol, Any)*)(content: ((Boolean, Boolean, B3FieldInfo)) ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  34. object radioOption extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template6[Any, Any, Array[(Symbol, Any)], (Boolean, Boolean, B3FieldInfo), B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  35. object radioWithContent extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Field, Array[(Symbol, Any)], ((Boolean, Boolean, B3FieldInfo)) ⇒ Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  36. object radioWithOptions extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Field, Seq[(String, Any)], Array[(Symbol, Any)], B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  37. def range(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  38. def reset(args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  39. def search(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  40. def select(field: Field, options: Seq[(String, String)], args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  41. def select(field: Field, args: (Symbol, Any)*)(content: (Set[String]) ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  42. object selectOption extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Any, Any, Array[(Symbol, Any)], Set[String], MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  43. object selectWithContent extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Field, Array[(Symbol, Any)], (Set[String]) ⇒ Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  44. object selectWithOptions extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template5[Field, Seq[(String, String)], Array[(Symbol, Any)], B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  45. def static(label: Html, args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  46. def static(label: String, args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  47. def static(args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  48. object staticBasic extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Array[(Symbol, Any)], Html, B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  49. def submit(args: (Symbol, Any)*)(text: ⇒ Html)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  50. def tel(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  51. def text(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  52. object textarea extends BaseScalaTemplate[play.twirl.api.HtmlFormat.Appendable, Format[play.twirl.api.HtmlFormat.Appendable]] with Template4[Field, Array[(Symbol, Any)], B3FieldConstructor, MessagesProvider, play.twirl.api.HtmlFormat.Appendable]

    Permalink
  53. def time(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  54. def url(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink
  55. package vertical

    Permalink
  56. def week(field: Field, args: (Symbol, Any)*)(implicit fc: B3FieldConstructor, msgsProv: MessagesProvider): play.twirl.api.HtmlFormat.Appendable

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped