net.liftmodules.FoBoBs

lib

package lib

Visibility
  1. Public
  2. All

Type Members

  1. class BootstrapSH extends ScriptHelper

    Bootstrap script helper is a helper class that implements some commonly used bootstrap component init/usage script functions.

    Bootstrap Script Helper Bootstrap v3.x

    Bootstrap script helper is a helper class that implements some commonly used bootstrap component init/usage script functions. This convenience script functions is used in the net.liftmodules.FoBoBs.snippet.FoBo.Bs3Comp snippet but can also be used as a convenience helper in your own customized snippets.

    Example:
    1. If you find that the net.liftmodules.FoBoBs.snippet.FoBo.Bs3Comp snippet dose not fit you exact needs your can still use the BootstrapSH class to customize your own project snippets.

      import net.liftmodules.FoBoBs.lib.{BootstrapSH=>sch}
       :
      class MySnippet {
      
        lazy val sch = new sch()
      
        def someFunc = {
          :
          sch.fobohelper(...)
          :
        }
        :
      }
  2. class ScriptHelper extends AnyRef

    This script helper is a helper class that implements some commonly used script functions.

    Script Helper Boostrap v3.x

    This script helper is a helper class that implements some commonly used script functions. This convenience script functions is used in the FoBo.ScriptHelper snippet but can also be used as a convenience helper in your own customized snippets.

    Example:
    1. If you find that the net.liftmodules.FoBo.snippet.FoBo.ScriptHelper snippet dose not fit you exact needs your can still use the ScriptHelper class to customize your own project snippets.

      import net.liftmodules.FoBoBs.lib.{ScriptHelper=>sch}
       :
      class MySnippet {
      
        lazy val sch = new sch()
      
        def someFunc = {
          :
          sch.fobohelper(...)
          :
        }
        :
      }

Ungrouped