Re: [Lift] Re: Binding a snippet in a comet actor?

2010-01-13 Thread Felipe Rodrigues
The problem was using Google Chrome to see this page. On firefox it shows up normally. Alex Boisvert wrote: Yes.  The issue is here: http://github.com/dpp/liftweb/issues/closed/#issue/93 It was fixed in 1.1M7 and later. alex On Tue, Jan 12, 2010 at 1:47 PM, Felipe Rodrigues

Re: [Lift] Re: Binding a snippet in a comet actor?

2010-01-12 Thread Alex Boisvert
Yes. The issue is here: http://github.com/dpp/liftweb/issues/closed/#issue/93 It was fixed in 1.1M7 and later. alex On Tue, Jan 12, 2010 at 1:47 PM, Felipe Rodrigues < felipero.maill...@gmail.com> wrote: > I have a similar problem here. I didn't find this issue on github. > Is this issue sol

[Lift] Re: Binding a snippet in a comet actor?

2010-01-12 Thread Felipe Rodrigues
I have a similar problem here. I didn't find this issue on github. Is this issue solved? Thanks, Felipe On Oct 9 2009, 5:17 pm, David Pollak wrote: > This is a defect.  I've opened a ticket:http://github.com/dpp/liftweb/issues#issue/93 > I'll have a fix che

[Lift] Re: Binding a snippet in a comet actor?

2009-10-10 Thread David Pollak
On Fri, Oct 9, 2009 at 7:31 PM, Somindra Bhattacharya wrote: > > Thanks David! > You are welcome and thanks for taking the time to put together the sample! > > On Oct 10, 12:17 am, David Pollak > wrote: > > This is a defect. I've opened a ticket: > http://github.com/dpp/liftweb/issues#issue/9

[Lift] Re: Binding a snippet in a comet actor?

2009-10-09 Thread Somindra Bhattacharya
Thanks David! On Oct 10, 12:17 am, David Pollak wrote: > This is a defect.  I've opened a > ticket:http://github.com/dpp/liftweb/issues#issue/93 > I'll have a fix checked in later today > > On Fri, Oct 9, 2009 at 1:02 AM, Somindra Bhattacharya > wrote: > > > > > > > David, > > > Thanks for resp

[Lift] Re: Binding a snippet in a comet actor?

2009-10-09 Thread David Pollak
This is a defect. I've opened a ticket: http://github.com/dpp/liftweb/issues#issue/93 I'll have a fix checked in later today On Fri, Oct 9, 2009 at 1:02 AM, Somindra Bhattacharya wrote: > > David, > > Thanks for responding. > > I have hosted the example at http://174.129.214.150:8080/ > > The co

[Lift] Re: Binding a snippet in a comet actor?

2009-10-09 Thread Somindra Bhattacharya
David, Thanks for responding. I have hosted the example at http://174.129.214.150:8080/ The code is at http://174.129.214.150:8080/dynamicForm.tar.gz Here are the steps to reproduce the issue: 1. Open http://174.129.214.150:8080/ in a browser window. This starts a comet actor which listens fo

[Lift] Re: Binding a snippet in a comet actor?

2009-10-08 Thread David Pollak
The chat example in demo.liftweb.net (source in examples/example) has a form that is presented after the initial form is rendered. It works just fine. Please put together a small example of the failure so I can see the running code. On Wed, Oct 7, 2009 at 9:13 PM, Somindra Bhattacharya wrote: >

[Lift] Re: Binding a snippet in a comet actor?

2009-10-07 Thread Somindra Bhattacharya
Apologies for bumping this. Is there a way to get the submit button (or an ajaxButton) to work if the snippet which was not originally part of the page is bound by a comet actor? Thanks, Som On Oct 7, 12:32 pm, Somindra Bhattacharya wrote: > Thanks for responding, Naftoli. > > I tried changin

[Lift] Re: Binding a snippet in a comet actor?

2009-10-07 Thread Somindra Bhattacharya
Thanks for responding, Naftoli. I tried changing the code to: def handleSubmit() = { Log.info("GOT A SUBMIT IN INVITE") net.liftweb.http.js.JsCmds.Run("alert('Hey')") } ajaxForm( bind("elem", xhtml, "submit" -> submit("Click", () => handleSubmit() ),

[Lift] Re: Binding a snippet in a comet actor?

2009-10-06 Thread Naftoli Gugenheim
What about an Ajax form? On Tue, Oct 6, 2009 at 9:52 AM, Somindra Bhattacharya wrote: > > Hi Everyone, > > I have a comet actor that binds XHTML. The XHTML corresponds to a > snippet: > > XHTML for comet actor -> > >   >     >   > > When the comet actor receives a certain message, the render me