[Lift] Re: How to give a time lmit to display a message

2009-10-27 Thread David Pollak
On Mon, Oct 26, 2009 at 6:23 PM, sunanda wrote: > > I am trying to display the message for 2 seconds and remove the > message using following code. It is displaying the meassage but not > removing after 2 seconds. Where am I going wrong. > > SetHtml("editcoldefmsg",Text("Edited Column Definitio

[Lift] Re: How to give a time lmit to display a message

2009-10-26 Thread sunanda
I am trying to display the message for 2 seconds and remove the message using following code. It is displaying the meassage but not removing after 2 seconds. Where am I going wrong. SetHtml("editcoldefmsg",Text("Edited Column Definition "+coldef.displayname))& After(2 seconds, SetHtml("editcold

[Lift] Re: How to give a time lmit to display a message

2009-10-26 Thread sunanda
Thanks Ross On Oct 27, 2:33 am, Ross Mellgren wrote: > SetHtml("msg", Text("hello")) & After(1 minute, SetHtml("msg", Empty)) > > -Ross > > On Oct 25, 2009, at 9:03 PM,sunandawrote: > > > > > > > Hi, > > I need to display a message only for few seconds using SetHtml. > > E.g. SetHtml("msg",Text(

[Lift] Re: How to give a time lmit to display a message

2009-10-26 Thread Ross Mellgren
SetHtml("msg", Text("hello")) & After(1 minute, SetHtml("msg", Empty)) -Ross On Oct 25, 2009, at 9:03 PM, sunanda wrote: > > Hi, > I need to display a message only for few seconds using SetHtml. > E.g. SetHtml("msg",Text("Hello")). > How can I do this > > Thanks. > Sunanda > > --~--~-