An open source web application framework written in Scala

learn more… | top users | synonyms (1)

4
votes
1answer
53 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
49 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. ...
1
vote
2answers
38 views

How to make an AJAX call with Confirm in lift?

I'm new to lift, and want to implement following in my project: There is a "delete" link in the page, when user clicks it, there will be a confirmation with text "are you sure to delete?". If user ...
0
votes
3answers
30 views

Replace content by class via AJAX

With lift, if we want to replace the content of some DOM, we can use SetHtml if we know the ID of the DOM: SetHtml(domID, Text("new text")) But SetHtml only accepts id, what if I want to find DOMs ...
0
votes
1answer
22 views

How do I troubleshoot a 404 error on a webapp accessed via apache vhost?

In my development system ( macos ) I have a webapp running in a jetty container on port 8080 Part of this webapp is a REST service I can hit the REST service as follows curl ...
0
votes
0answers
29 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 ...
2
votes
1answer
48 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
31 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
43 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
54 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
33 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
36 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
56 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
47 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
65 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
53 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
57 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 ...
3
votes
1answer
79 views

How to get parameters in an HTML page passed from a snippet with Lift framework

I want to develop a Lift web app, I've an index page that has in here body: <div id="main" class="lift:surround?with=default&at=content"> <div> App </div> <div> ...
0
votes
1answer
41 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
69 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 ...
0
votes
2answers
46 views

binding Scala to HTML in Lift

I've started playing with Lift. I want to create a basic application which takes input from user via input field, performs a db search on that input, and takes the results of that db search and ...
2
votes
1answer
97 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
57 views

Eclipse plugins for Play & Lift to create new projects

I am a beginner on Play and Lift frameworks and I have a question: Is there any Eclipse plugin for either Play framework and/or Lift framework enabling us to create a new Play/Lift project directly ...
1
vote
1answer
52 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
28 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
42 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 = ...
0
votes
1answer
22 views

passing data between snippets

I have 2 snippets: TakeIn and SendOut. TakeIn takes data from a search for (1 text field submitted via submit button and read from RequestVar. Based on this input I am creating and populating a data ...
2
votes
2answers
192 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
187 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
68 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
39 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
77 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
58 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
1answer
29 views

SBT “package” depend on “test”

How do I make target "package" depend on target "test" ? There is a solution here: Force sbt 0.11 to run tests But it doesn't really work with the xsbt-web-plugin.
0
votes
0answers
40 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
72 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
88 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
38 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
152 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
52 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 2 3 4 5 18