--
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.
So, I can use it to select a given element out of multiple, but then can you do anything further with it? Looking at the code it appears the the node is simply returned from treatElem but I'm not 100% positive. I tried a sample template:
<p>Total: <span id="total">$0</span></p>
And a binding:
"#total ^^" #> "$42"
And the result is
<span id="total">$0</span>
I also tried
"#total ^^" #> {
"#total" #> "$42"
}
With the same result.
Thanks,
Derek
--
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.
On Fri, Jan 14, 2011 at 12:43 PM, Derek Chen-Becker <dchen...@gmail.com> wrote:
The ^^ operation is a replacement for selectTemplate... it allows you to select the subsection of the template and then applies the rest of the CSS Selector Transforms to that... the parameter is ignored.