0
votes
1answer
17 views

How Do I Access A Snippet Option In Lift?

If I have a template like this: <div class="lift:ThisIsMySnippet?option1=a_value;option2=another_value"> <div class="morestuff"> {embed} </div> </div> and then a ...
0
votes
2answers
84 views

Lift Authentication

I want to create an authentication route for my Lift Application. Create a route, for instance www.myapp.com/user/login I am not using Lift forms/templating. The forms are rendered in JS. Send a ...
0
votes
2answers
37 views

Incorrect MIME type for GET requests

I've been using the Lift Web Framework as a REST only service for quite a while, but I need to use it as a stand alone tool now. <lift:surround with="default" at="content"> <head> ...
4
votes
1answer
55 views

How to enforce creating new transaction in Lift Mapper?

We are using Lift + Mapper (version 2.4) in our project. We as well are using transaction-per-request pattern S.addAround(DB.buildLoanWrapper()). In one of our requests we need to have nested ...
2
votes
2answers
56 views

select NodeSeq by it's id (IdSelector?)

How do I select a NodeSeq by it's id? In lift, there are "CssSelectors" that allow you to do something like "#myId" #> function, and the function will receive only the desired NodeSeq as input. ...
0
votes
0answers
34 views

Scala-lift application connection issue with mongoDB

Initailly when i connect my scala -lift application to mongodb then it gets connected properly but after sometime if i don't click anywhere on the site and then refresh it then I am getting the below ...
3
votes
1answer
52 views

How Do I Call Snippets From Different Packages In Lift?

I am trying to call one of 2 snippet methods with the same name and same class, but these snippets are located in different packages. Here's the example code: Snippet 1: package v1.site.snippet ...
1
vote
1answer
33 views

Why `bootstrap.liftweb.Boot` of Liftweb is a class, other than an object?

In lift application: package bootstrap.liftweb class Boot { def boot = {} } I want to know why Boot is a class not an object? It should be executed only once, so I think object Boot is more ...
0
votes
2answers
49 views

How to configure my SBT to use a plugin with a specified plugin?

I want to use the lifty plugin, but failed to download it in SBT. C:\Users\Freewind>sbt sbt-version [info] 0.12.3 > console Welcome to Scala version 2.9.2 (Java HotSpot(TM) 64-Bit Server VM, ...
0
votes
1answer
55 views

Is the method name “is” of “RequestVar” a short name of some other words?

In lift web framework, the RequestVar has a method is: def is: T The current value of the variable I wonder why the method name is is? Is it a short name of some other words? If it is the word ...
0
votes
0answers
36 views

Select or delete records from database by several By conditions

In Lift mapper framework how do I delete or select records from database with several constratins? Like DbEntity.findAll(Or(By(DbEntity.name,"something"),By(DbEntity.updated,new Date())) ...
1
vote
2answers
51 views

cloudbees+lift application = broken navigation

I've been using Lift as the framework for a personal website, and in an effort to move the server off of my computer, I've turned to Cloudbees. I deployed my app to the cloud as a .war file and ...
0
votes
1answer
38 views

How can i change my sitemap after the boot.scala executed

I'm just learning lift by doing a sample app in lift. i want to show a login page and some other pages if user logged in. so how can i add those page links to the already existing sitemap in left side ...
1
vote
1answer
33 views

single “*” wildcard in Lift SiteMap Menu entry

It looks as though the Lift SiteMap DSL supports both "*" and "**" as wildcards. Apparently "**" is used only at the end of a path, when you want to match all paths that start with some prefix. But I ...
0
votes
0answers
65 views

How do I add onsubmit or onclick validation logic to my Lift form using CSS binding?

I have a form working with CSS selector binding and Scala-side validation. Now I want to add javascript validation either via my own jQuery code that I call or else the built-in commands like JsIf. ...
0
votes
1answer
51 views

bind data to a span in button click ajax in lift framework with jquery

I am trying to create one simple lift web app. i want to show some data in a <span> in my view from the snippet JsCmds returning function. i tried the following code so far. In my View ...
1
vote
2answers
70 views

Scala Lift - Sitemap menu builder custom css classes

I've got the following site map defined in Boot.scala: SiteMap( Menu(S ? "Home") / "index", Menu(S ? "About") / "about", Menu(S ? "Work") / "work", Menu(S ? "Contact") / "contact" ) ...
2
votes
1answer
62 views

using jquery functions for showing div in lift framework snippet

I am trying to create one simple lift web app. in that i want to show and hide two div while clicking a button in the same page using ajax call. i tried the following code so far. In my view ...
1
vote
1answer
53 views

passing parameters from snippet to next page in lift framework

i am using lift and scala to create a sample web app.i have two pages in my app. first one have one form which takes the ticket information from the user and while clicking submit it will call the ...
1
vote
1answer
58 views

reading DB credentials from props file in lift scala

I am just started working with Scala and lift frame work. i am trying to connect my DB using normal JDBC. i wish to read my DB credentials from the default.props file. i tried the following code so ...
0
votes
1answer
45 views

How to run a Lift-2.4 web app with sbt

I'm trying to run a Lift-2.4 web app following this tutorial http://scala-ide.org/docs/tutorials/lift24scalaide20/index.html The problem is how to run this app (either on jetty, tomcat or other ...
0
votes
3answers
70 views

validation of fields in a form in scala with lift frame work

I am working with lift frame work and Scala. i have a form to sign up to my App and i want to validate all the fields in it. i have a snippet where i access my form values and one validation class ...
2
votes
1answer
102 views

how to deserialize DateTime in Lift

I am having trouble deserializing a org.joda.time.DateTime field from JSON into a case class. The JSON: val ajson=parse(""" { "creationDate": "2013-01-02T10:48:41.000-05:00" }""") I also set ...
1
vote
1answer
54 views

Configuring the Lift project for Scala IDE

I'm trying to configure a Lift project for Eclipse IDE. To do this, I carry out this tutorial: http://scala-ide.org/docs/tutorials/lift24scalaide20/index.html I arrived until the step of Configuring ...
0
votes
1answer
28 views

how to use range facets

I'm using facets to get partition search results into ranges. The search returns a list item and each item has a score. In the list the items are ordered by score from high to low. Some items may also ...
0
votes
0answers
31 views

ImageIO.read(GridFSDBFile.getInputStream) gives null image

I have a GridFSDBFile let say gridFile. When I tried this code , it gives null image. val image=ImageIO.read(gridFile.getInputStream). Can any one suggest me the alternate solution to read image.
0
votes
1answer
48 views

Why does getClass.getResourceAsStream(path) give empty InputStream in lift web

I tried below code : val stream = getClass.getResourceAsStream(path) println(stream.read()) It prints -1. but when i tried to read image from above stream it gives image correctly. val image = ...
2
votes
2answers
194 views

why is lift framework so slow?

I am learning Lift framework. I used project template from git://github.com/lift/lift_25_sbt.git and started server with container:start sbt command. This template application displays just simple ...
1
vote
1answer
76 views

Scala/Lift - map function

I'm using Lift to generate my web front. In the scala file I have a list: val testList = List("part1","part2","part3") I'm apply a function to each element for the list. For now I just want to make ...
1
vote
2answers
198 views

get checkbox and radio button value in lift

i am trying to processing a form in lift frame work. my form is having one checkbox and radiobuttons. how could i check whether the checkbox is checked or not and the selected radio button.the ...
1
vote
1answer
70 views

Scala JSON error handling and responses

I use Scala + Lift Web Framework + MongoDB for a bunch of applications. In some instances, I need to respond with a JSON error message to the client making the request to display an internationalized ...
0
votes
0answers
40 views

passing password value from view to snippet in lift framework

I am trying to create a login page in lift framework. i have a view (a form) and a snippet to process that. but i couldn't pass my password value from view to snippet. the following code i have. the ...
0
votes
1answer
57 views

LIFT: preventing orphaned records when destroying an object

i am currently learning the lift framework, and have a question regarding persistence in associated records. if i had a model, say, artist. i also have a model called album, and one called track. an ...
0
votes
1answer
58 views

Scala Lift - Cloudbees 500 error, mongo record

I have a perfectly fine, running version of my app both locally, and within a dedicated server environment. I am now in the process of hosting the service through the cloud alone, but have run into ...
0
votes
0answers
83 views

integrating slick with lift

I'm using lift(It's brilliant!) for a web app and am confused what to use - slick or mapper. I have previously used mapper with an app. It works well but I found one problem. Suppose I want to query ...
0
votes
1answer
59 views

Message: net.liftweb.json.MappingException: Do not know how to deserialize

I am pretty new to Scala/Lift and ran into following problem: class Tests { case class JTest( thisUrl:String, id:Int, desc:String, results:String, isEnabled:Boolean, ...
0
votes
0answers
70 views

Connecting Database from lift app using mapper error

I am trying to connect my lift app to the database. i have the following code to do the operation. i have downloaded and included the lift-mapper_2.9.1 to my app and i have given the following code in ...
0
votes
0answers
42 views

Create a Selfreferencing ManyToMany for Liftweb

I am trying to extend Lift Mappers ManyToMany Relation in a way that makes it possible for a mapper to have a many to many relation with itself. The problem ManyToMany's base implementation has with ...
1
vote
1answer
73 views

Connecting MySQl from lift app

I am working with lift webframe work integrated with eclipse. I have downloaded one sample app from github and i processed some forms using OnSubmit concept. now I am trying to connect my app with ...
0
votes
1answer
98 views

how to get autocomplete text box value using lift web

I am using Lift web framework. I have auto-complete text box. when i entered some value there then drop down list is open. if I select value from drop down only then I am able to access value of text ...
1
vote
2answers
53 views

use of scala's NodeSeq in lift frame work

Can anybody tel about what is the use NodeSeq object in lift frame works form processing.? can we process our form without using the NodeSeq object.?
0
votes
1answer
43 views

Self-closing template elements stopping rendering in Lift

I'm using bind() to replace XML elements in my template with String values, like so: bind("foo", nodes, "bar" -> "My Content") When I use a self-closing element in my template, like so: What I ...
1
vote
0answers
44 views

making changes in the lift app in eclipse

I am working with lift webframe work integrated with eclipse. I have downloaded one sample app from github and now I'm trying to add more lines to it. If any error occured in the project, the ...
2
votes
3answers
161 views

Deployment automation

I have a Lift application that is packaged as a WAR archive and must be deployed under Jetty. However, I want to be able to perform a few tasks automatically: Specify the target server(or collection ...
0
votes
1answer
54 views

Accessing bind-at values from a snippet in Lift

I have a template that looks like this: <lift:surround name="default" at="page-content"> <lift:bind-at name="page-title">Home</lift:bind-at> ... </lift:surround> The ...
1
vote
1answer
64 views

Adding more pages and .scala classes in lift framework

i am working with lift frame work. i downloaded one sample app from github.com and i am trying to add more lines in it. i have one index.html in src/main/webapp <!DOCTYPE html PUBLIC "-//W3C//DTD ...
1
vote
1answer
78 views

Lift JSON LINQ Like Dynamic Extraction Pattern

I am attempting to perform an XPath based extraction using Lift JSON except that the xpath pattern of extraction is determined during runtime To illustrate, I'd like to convert string "a.b.c.d" to ...
3
votes
1answer
312 views

updating scala version to 2.10.0 in lift app

I am working with the sample lift framework downloaded from github.com and Scala 2.9.1 is the vesrion in it. i am using Container:start command in cmd for starting the server and i can see the app in ...
0
votes
2answers
71 views

Why does Lift escape this <lift:bind> value?

I have (roughly) this LIFT-ified HTML in my default template: <html> <head> <title>FooBar Application | <lift:bind name="page-title"/></title> </head> ...
2
votes
1answer
156 views

“object github is not a member of package com” for a new Lift project

I'm starting my first Lift project using the documentation here: http://cookbook.liftweb.net/#LiftFromScratch I've created my build.sbt as instructed. The walkthrough then says: Now that you ...

1 2 3 4 5 16