with
val processed = bind("t",xml, "node" -> <a />)
becomes
<a attr="some"></a>
How do I suppress the mixin of attr?
Thank you,
Jasper
val xml = <t:node attr="some"></t:node>
should have been:
val xml = <t:node t:attr="some"></t:node>
The result stays the same (without the prefix):
<a attr="some"></a>
Sorry for the mistake and the additional mail traffic!
-Ross
> --
> 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.
>
see this thread.
http://groups.google.com/group/liftweb/browse_thread/thread/8fa4e5671fc74765/3894123e29da467b?lnk=gst&q=Snippet+attribute+pass+through
Pomu
2010/2/26 jasper <jasper....@gmail.com>: