I'm using jsviews to render the following template
recoList = [{title:"Apple"},{title:"Two Apples"}];
<script id="sampleTmpl" type="text/x-jsrender">
{{for recoList}}
<input type="text" value={{:title}} />
{{/for}}
</script>
Whenever the value of title has a whitespace in it, like "Two Apples", then input box is rendered as
<input type="text" value="Two" />
The word after the whitespace is simply spliced off!
How can i give the full string to the value?