For the purposes of creating a "cascading" list in a select, I'd like to prepend select options values with non-breaking spaces ( ). Because the select options value attribute is automatically escaped (and from a cursory look at the Zend sources, it appears it's not possible to turn this off), the s appear as " " instead of an actual space.
I tried using chr(160) in place of " ", but am seeing question marks in my browser instead of spaces. Please note that I have my charset set as utf-8 in case that's relevant. It looks like I may need to write my own ViewHelper. Any thoughts on other workarounds? Ryan
