Marcello,

>Hi! I've found that if I use the special chars " " instead of a
>space char in a taconite xml doc, I cant get the response doc to be
>processed by taconite; for ex:
>
><taconite>
>   <replaceContent select="#filemanager-address">
>      &nbsp;
>   </replaceContent>
></taconite>
>
>debugging with firebug I got only this:
>
>[taconite] Plugin Version: 2.1.7
>[taconite] [AJAX response] content-type: text/xml; charset=utf-8;
>status: 200 OK; has responseXML: true
>[taconite] type: undefined
>[taconite] responseXML: [object XMLDocument]
>
>I run taconite 2.1.7 with jQuery 1.2.1.
>
>What I shoud do to use the &nbsp; chars?
>Thanks in advance!

The entity &nbsp; isn't a known XML entity--it's an HTML entity. You might
be able to escape the ampersand (&amp;nbsp;) to get it to work, but the best
bet is to use the decimal representative of &nbsp; which is &#160;. 

-Dan

Reply via email to