--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
Would really appreciate your help.
Thanks
Gautam
--
You received this message because you are subscribed to the Google Groups "Lift" group.
To post to this group, send email to lif...@googlegroups.com.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/liftweb?hl=en.
Looks like in a child template (which is called with <lift:embed>) you cannot have anything with HTML tags <p> or <pre> at the very beginning.
I had a line with <p> tag at the very beginning of blog-template.html and that's why it was not working.
<p> this is template page</p>Not sure why it should not support <p> <pre> kind of HTML tags ath the begining of a template. Though <p> and <pre> works in between.
<table>
<tr>
<td><b><bd:title/></b></td>
</tr>
</table>
How does multiple <lift:lazy-load> behaves in one page.
I tried putting three <lift:lazy-load> tag, but looks like it only recognizes the first one, remaining ones it skips.
Here is the html code:<table>
<lift:surround with="default" at="content">
<lift:lazy-load>
<pre>First Lazy call</pre><pre>Second Lazy call</pre>
</lift:lazy-load>
<lift:lazy-load><pre>Third Lazy call</pre>
</lift:lazy-load>
<lift:lazy-load>
</lift:lazy-load>
</table>
</lift:surround>
Am I missing something? I should be able to place as many lazy-load tag in a page right?
Moreover I have seen that Comet Actor gets inserted with this tag. Does it include One Comet per tag?
You don't really need to use lazy-load for your use case, nor the comet that it uses.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
Cheers, Tim
Dave,
I addressed the issue in the existent code, tested it and now it's on
reviewboard. I did not use your approach due to a couple of problems
with Bog.scala:
1. ajax functions from lazy loaded content does not work. In my test
app I have a ajaxSelect that didn't trigger bound function.
2. It doesn't unwatch the comet actor from the client code after.
After the comet lifespan is exceeded the client code would continue
the comet cycle sending the comet guid, but this comet is dead hence
the user is resirected to the homepage.
To unsubscribe from this group, send email to liftweb+u...@googlegroups.com.
--