Re: [Lift] Re: Enumeration.Value versus Enumeration#Value

2010-02-10 Thread Christophe Dehlinger
Have you tried forcing the type parameters in your MappedEnum declaration ? Like this: object state extends MappedEnum[Address, States.type](this, States) On Thu, Feb 11, 2010 at 6:30 AM, edgarchan wrote: > and it seems we are getting the type and not the value > try > > Full(States(address.stat

[Lift] Re: does AutoComplete work ?

2009-11-16 Thread Christophe Dehlinger
Sure. http://github.com/dpp/liftweb/issues/#issue/193 On Sat, Nov 14, 2009 at 3:34 PM, David Pollak wrote: > It's a known issue (although there's no ticket for it... care to open a > ticket at http://github.com/dpp/liftweb/issues ) > > > On Wed, Nov 11, 2009 at 2:57

[Lift] does AutoComplete work ?

2009-11-11 Thread Christophe Dehlinger
Hi, does AutoComplete work ? I tried running the lift-example from snapshot on a local server, autocompletion isn't happening on the AJAX Samples page. The rest of the Ajax stuff works fine. AC does work on http://demo.liftweb.net/ajax though, so the problem doesn't seem to be browser-related. I

[Lift] lift-json serialization primitive types

2009-10-25 Thread Christophe Dehlinger
Hi, Is there a way to configure lift-json's case class serialization so that it uses Joda DateTimes instead of java.util.Date ? I'd like to known how to make the simple following code work as expected: import net.liftweb.json._ import org.joda.time._ case class MyCaseClass(dt: DateTime) object