[Lift] Re: Need jquery jgGrid working example (Firefox problem)

2010-01-17 Thread Marius
yes some of the JQuery plugins are not working properly with xhtml. Br's, Marius On Jan 17, 12:50 am, ibonk i...@readysoft.de wrote: It works in IE but not in Firefox! The solution is: Put the following line into your boot          LiftRules.useXhtmlMimeType = false I found the solution

Re: [Lift] Re: Need jquery jgGrid working example (Firefox problem)

2010-01-17 Thread Timothy Perrett
To clarify, its a problem with those JQuery plugins, not lift... those plugins incorrectly use document.write which is not supported in XHTML. Cheers, Tim On 17 Jan 2010, at 12:08, Marius wrote: yes some of the JQuery plugins are not working properly with xhtml. Br's, Marius On Jan 17,

Re: [Lift] Some maven help please ...

2010-01-17 Thread Indrajit Raychaudhuri
Marius, This plugin section is directly under build.plugins or under build.pluginManagement.plugins ? I am assuming (wild guess) it's under build.pluginManagement.plugins and hence it never gets invoked. Try putting it under build.plugins and see if it works. Alternately, you can send me

[Lift] Re: Some maven help please ...

2010-01-17 Thread Marius
Yes I tried both ways I'll send you my pom. On Jan 17, 7:37 pm, Indrajit Raychaudhuri indraj...@gmail.com wrote: Marius, This plugin section is directly under build.plugins or under build.pluginManagement.plugins ? I am assuming (wild guess) it's under build.pluginManagement.plugins

[Lift] Hook into snippet creation

2010-01-17 Thread ced
Hi all, is there a way to hook into the creation of snippets? I'd like to gain control over their creation. I tried to find something in LiftRules but couldn't find anything that might be suitable for this purpose. But maybe I missed something. Any hints? Cheers, Chris -- You received this

[Lift] Re: Hook into snippet creation

2010-01-17 Thread Marius
Why do you need this? Br's, Marius On Jan 17, 10:24 pm, ced docpom...@googlemail.com wrote: Hi all, is there a way to hook into the creation of snippets? I'd like to gain control over their creation. I tried to find something in LiftRules but couldn't find anything that might be suitable

[Lift] Re: Hook into snippet creation

2010-01-17 Thread ced
I thought about using a DI framework with Lift, having it manage a snippet's dependencies. On 17 Jan., 21:28, Marius marius.dan...@gmail.com wrote: Why do you need this? Br's, Marius On Jan 17, 10:24 pm, ced docpom...@googlemail.com wrote: Hi all, is there a way to hook into the

[Lift] Re: Hook into snippet creation

2010-01-17 Thread Marius
I guess it depends what kind of dependencies you had in mind ... DI frameworks are not very popular with Lift and I tend to think because they are not missed a whole lot. But could you describe your use- case ? With Lift dependencies are injected mostly via LiftRules as functions. Here is a

Re: [Lift] Re: Hook into snippet creation

2010-01-17 Thread Timothy Perrett
Check back in the group archives for dependency injection - we've discussed this at length many times. Cheers, Tim On 17 Jan 2010, at 21:19, Marius wrote: I guess it depends what kind of dependencies you had in mind ... DI frameworks are not very popular with Lift and I tend to think because

[Lift] Help required with utility method

2010-01-17 Thread pabraham
Greetings all, I need some help with a simple problem that I'm struggling to solve. I'm writing a simple expense tracking application. To keep it simple, I have a months and expenses. I can have a number of months, and each month can have more than one expense: class Month extends

[Lift] Problem with imports of net.liftweb

2010-01-17 Thread Michael Kuppinger
Hi, I'm sorry for a maybe foolish question but I'm really running crazy with this. I'm new with scala and lift but I already got the pocketchangeapp up and running and playing around with the RestAPI thing in it. Now I created a new project and it worked quite well until last night. I made my

[Lift] Two new issues for TextileParser

2010-01-17 Thread tommycli
I created two new issues for TextileParser. 290. TextileParser molests divs 291. TextileParser does not support notextile Additionally, it'd be nice if TextileParser were implemented in a way such that it was extensible. The main issue is that it's just a singleton object, which cannot be

[Lift] 1.1-M8 to 2.0-M1 behavior change

2010-01-17 Thread aw
I have this code: object Auth { def username = S.containerRequest.map( r = r.asInstanceOf [HTTPRequestServlet].req.getRemoteUser() ).openOr(UNKNOWN_USER) } The background is that I have my own Servlet Filter that performs authentication. It fits in the chain before the Lift Filter. For

[Lift] Re: Excessive select DISTINCT

2010-01-17 Thread aw
Note that I still see the excessive DISTINCTs in 2.0-M1. -- You received this message because you are subscribed to the Google Groups Lift group. To post to this group, send email to lift...@googlegroups.com. To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com.

[Lift] Re: Problem with imports of net.liftweb

2010-01-17 Thread Michael Kuppinger
OK I got it... Forgot to add Lift Packages to Build Path On 18 Jan., 02:11, Michael Kuppinger mich...@kuppinger.eu wrote: Hi, I'm sorry for a maybe foolish question but I'm really running crazy with this. I'm new with scala and lift but I already got the pocketchangeapp up and running and