It is a collection of wrapper-libraries build around Liftweb. Check the API Docs for more.
./sbt package publish-local
The basic idea is, to pass fields something like:
BHtml.text[Long, MapperClass](myMapperRecord.name)
A more complex example would be:
val enableSubmitJs = JsRaw("""$('input[type=submit]').removeAttr('disabled')""")
val disableSubmitJs = JsRaw("""$('input[type=submit]').attr('disabled', 'disabled')""")
BHtml.text[Long, MapperClass](myMapperRecord.name, false, enableSubmitJs, disableSubmitJs)
Thanks to everybody in the Lift Community and on Liftweb Google Groups.