How to show html entities

Hi,

how can I show space   by CHtml::ajaxSubmitButton? When I use




echo CHtml::ajaxSubmitButton('&nbsp',...);



I get




<input ... value="&amp;nbsp;" />



insignificant, is enough to write:




<input ... value=" " />



You can specify the ‘encode’ option to be false (need 1.0.5+)

My fault, I haven`t read tag() method to the end.