Package

net.liftmodules

FoBoBs

Permalink

package FoBoBs

FoBo Bootstrap 3 Toolkit Module

This FoBo toolkit module provides Bootstrap v3.x API and Resource components to the FoBo / FoBo Module, but can also be used as-is, see below for setup information.

If you are using this module via the FoBo/FoBo artifact module see also net.liftmodules.FoBo for setup information.

Example:
  1. To initiate this module for usage in your Lift project set something like the following in your projects Lift bootstrap.liftweb.Boot boot method.

    import net.liftmodules.{FoBoBs => FoBo}
     :
     :
    FoBo.Toolkit.Init=FoBo.Toolkit.Bootstrap336 //or any other companion toolkit object

    You may substitute Toolkit for Resource or API and if you wish also adjust the artifact dependencies accordingly to include just the FoBo modules you use.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FoBoBs
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait API extends AnyRef

    Permalink

    Initiate FoBo's Bootstrap 3 API in you bootstrap liftweb Boot.

    Initiate FoBo's Bootstrap 3 API in you bootstrap liftweb Boot.

    Example:

    import net.liftmodules.{FoBoBs => FoBo}
     :
    FoBo.API.Init=FoBo.API.[API Object]

    Note: To see available objects click on the round trait icon in the header of this page.

  2. sealed trait Resource extends AnyRef

    Permalink

    Initiate FoBo's Bootstrap 3 Resource(s) in you bootstrap liftweb Boot.

    Initiate FoBo's Bootstrap 3 Resource(s) in you bootstrap liftweb Boot.

    Example:

    import net.liftmodules.{FoBoBs => FoBo}
     :
    FoBo.Resource.Init=FoBo.Resource.[Resource Object]

    Note: To see available objects click on the round trait icon in the header of this page.

  3. sealed trait Toolkit extends AnyRef

    Permalink

    Initiate FoBo's Bootstrap 3 Toolkit(s) in you bootstrap liftweb Boot.

    Initiate FoBo's Bootstrap 3 Toolkit(s) in you bootstrap liftweb Boot. Using the Toolkit initiation you will bring in both the toolkit's resources and FoBo/Lift API associated with the toolkit.

    Example:

    import net.liftmodules.{FoBoBs => FoBo}
     :
    FoBo.Toolkit.Init=FoBo.Toolkit.[Toolkit Object]

    Note: To see available objects click on the round trait icon in the header of this page.

  4. sealed trait FoBoToolkit extends AnyRef

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit or FoBoBs.Resource and FoBoBs.API

Value Members

  1. object API extends API

    Permalink
  2. object BSLocInfo

    Permalink

    Extends your Lift SiteMap with various common bootstrap menu manipulations such as horizontal and vertical menu dividers and menu labels (labels coming soon).

    Extends your Lift SiteMap with various common bootstrap menu manipulations such as horizontal and vertical menu dividers and menu labels (labels coming soon).

    This object should be used in conjunction with the TB* menu builder objects in net.liftmodules.FoBo.snippet.FoBo snippet's.

    Example:

     :
    //add a horizontal menu divider
    divider1 >> LocGroup(...) >> FoBoBs.BsLocInfo.Divider,
     :
    //add a vertical menu divider
    divider2 >> LocGroup(...) >> FoBoBs.BsLocInfo.DividerVertical,
     :
  3. object Resource extends Resource

    Permalink
  4. object Toolkit extends Toolkit

    Permalink
  5. def toString(): String

    Permalink
    Definition Classes
    FoBoBs → AnyRef → Any

Deprecated Value Members

  1. object Bootstrap301 extends FoBoToolkit with Product with Serializable

    Permalink

    Enable usage of Bootstrap version 3․0․1 in your bootstrap liftweb Boot.

    Enable usage of Bootstrap version 3․0․1 in your bootstrap liftweb Boot.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit.Init=FoBoBs.Toolkit.Bootstrap301

    Version

    3.0.1 Example

    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap301
  2. object Bootstrap311 extends FoBoToolkit with Product with Serializable

    Permalink

    Enable usage of Bootstrap version 3․1․1 in your bootstrap liftweb Boot.

    Enable usage of Bootstrap version 3․1․1 in your bootstrap liftweb Boot.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit.Init=FoBoBs.Toolkit.Bootstrap311

    Version

    3.1.1 Example

    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap311
  3. object Bootstrap320 extends FoBoToolkit with Product with Serializable

    Permalink

    Enable usage of Bootstrap version 3․2․0 in your bootstrap liftweb Boot.

    Enable usage of Bootstrap version 3․2․0 in your bootstrap liftweb Boot.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit.Init=FoBoBs.Toolkit.Bootstrap320

    Version

    3.2.0 Example

    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap320
  4. object Bootstrap335 extends FoBoToolkit with Product with Serializable

    Permalink

    Enable usage of Bootstrap version 3․3․5 in your bootstrap liftweb Boot.

    Enable usage of Bootstrap version 3․3․5 in your bootstrap liftweb Boot.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.5.0) Use Bootstrap336 or later

    Version

    3.3.5 Example

    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap335
    Since

    v1.4

  5. object Bootstrap336 extends FoBoToolkit with Product with Serializable

    Permalink

    Enable usage of Bootstrap version 3․3․6 in your bootstrap liftweb Boot.

    Enable usage of Bootstrap version 3․3․6 in your bootstrap liftweb Boot.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit.Init=FoBoBs.Toolkit.Bootstrap336

    Version

    3.3.6 Example

    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap336
    Since

    v1.5

  6. object InitParam extends FoBoToolkit

    Permalink

    Enable Toolkit(s)/JQuery options for the FoBo module in your bootstrap liftweb Boot

    Enable Toolkit(s)/JQuery options for the FoBo module in your bootstrap liftweb Boot

    Example:

    FoBoBs.InitParam.JQuery=FoBoBs.JQuery192
    FoBoBs.InitParam.ToolKit=FoBoBs.Bootstrap301

    This example uses the Bootstrap v3.0.1 option.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Use FoBoBs.Toolkit.Init=FoBoBs.Toolkit.[Toolkit Object]

  7. def init(): Unit

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.6.0) Init no longer nessesary as it is now automaticaly done for respective FoBoBs.InitParam

    Example:
    1. In bootstrap liftweb Boot set

      FoBoBs.init()

      The above example just calls init without specifying fobo init params so default Toolkit and JQuery values will be used.

Inherited from AnyRef

Inherited from Any

Ungrouped