[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-08 Thread wibblecp
Hi Marius, I am using version 2.0-M1. Now it works. This topic could be considered closed for me. Thanks to all for your replies. Regards, wibble. On Feb 6, 6:32 pm, Marius wrote: > What Lift version are you using? > > If you are using an Ajax form did not show > the messages associated with I

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-08 Thread wibblecp
Thanks Timothy for your advice. On Feb 6, 3:16 pm, Timothy Perrett wrote: > wow, thats some ugly code man. Why dont you try something like: > > def validateAndSave { >   currentEntry.validate match { >     case Nil => >       currentEntry.save >       S.notice(currentEntry.title + "SAVED!") >    

Re: [Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-08 Thread Adam Warski
Hello, > If you are using an Ajax form did not show > the messages associated with ID's ... messages coming from FieldError. > This is a defect I fixed about a week ago. Please use the latest lift > build. Ah, I didn't realize that this ticket got closed. Anyway, I checked with snapshot and it

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread Marius
What Lift version are you using? If you are using an Ajax form did not show the messages associated with ID's ... messages coming from FieldError. This is a defect I fixed about a week ago. Please use the latest lift build. If you just want to render all messages (regardles if they are associate

Re: [Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread Timothy Perrett
wow, thats some ugly code man. Why dont you try something like: def validateAndSave { currentEntry.validate match { case Nil => currentEntry.save S.notice(currentEntry.title + "SAVED!") case List(fielderror) => S.error(fielderror.msg) case _ => } } I havent tested i

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread wibblecp
hi Adam, thank you. It is exactly what I done def validateAndSave (): Unit = currentEntry.validate match { case Nil => currentEntry.save ; S.notice(currentEntry.title + " SAVED!") case x => { x map { (e:FieldError) => S.error(e.msg) } } } have a nice day. wibble On Feb 6, 2:35 

Re: [Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread Adam Warski
Hello, are you submitting the form with ajax? If so, see this thread: http://groups.google.com/group/liftweb/browse_thread/thread/e25d86a24a5266a2/9fdcf9f2ce022618 In short, check if doing: xs.map {i => S.error(i.msg) }; instead of: S.error(xs); works. > Hi Jeppe, > does not work. Always

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread wibblecp
Hi Jeppe, does not work. Always the same result. If the form does not contain errors the data are saved well and the browser display S.notice("saved") correctly. The S.error method returns a List[FieldError]. I receive a List with the format of List(Full(tablename_field) : message) this is a fie

Re: [Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread Jeppe Nejsum Madsen
wibblecp writes: > it does not work even in the case of a single error on the form. > > the result is always a List(Full(entries_code) : Description must not > be empty) Try adding showAll: But default, Msgs doesnøt show field-level errors /Jeppe -- You received this message because you ar

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread wibblecp
it does not work even in the case of a single error on the form. the result is always a List(Full(entries_code) : Description must not be empty) thanks, wibble. On Feb 6, 11:00 am, wibblecp wrote: > Using I receive the same result. > > S.notice works fine in the browser but S.error with a lis

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread wibblecp
Using I receive the same result. S.notice works fine in the browser but S.error with a list of errors does not work. any advice? thanks, wibble. On Feb 6, 10:16 am, wibblecp wrote: > Hi Marius, thanks for your raply > > I am using it in my html page as: > > [code] >         >             flas

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread wibblecp
Hi Marius, thanks for your raply I am using it in my html page as: [code] flash_error errorExplanation flash_notice [/code] thanks, w. On Feb 6, 10:12 am, Marius wrote: > Are you using in your html page ? > > Br's, > Marius > > On Feb 6, 1

[Lift] Re: Error messages are not displayed - 2.0-M1

2010-02-06 Thread Marius
Are you using in your html page ? Br's, Marius On Feb 6, 10:45 am, wibblecp wrote: > Hi all, > I'm newbie with lifts and I am having a little problem. I am using > Lift2.0-M1. > > I have a snippet that runs the rescue of a model. The method is called > when the submit the form > > [code] > def