Okay so I'm using JSON.Net to convert an xml feed into JSON so load into the list view
PROBLEM is that the text content is defined with pound symbols as the prefix...and I have no idea how to bind that in the listview template
Nothing seems to work right...
If I just to #: title # it works, but clearly just shows [object Object]
Should also note I can't convert it in the schema as I need it to be generic and just give me the objects as-is
Ideas?
PROBLEM is that the text content is defined with pound symbols as the prefix...and I have no idea how to bind that in the listview template
var
templateHtml = "<div class=
'twit'
>\
<h1>
#: title.#cdata-section #</h1>\
</div>";
var
templateHtml = "<div class=
'twit'
>\
<h1>
#: title.\\#cdata-section #</h1>\
</div>";
Nothing seems to work right...
If I just to #: title # it works, but clearly just shows [object Object]
Should also note I can't convert it in the schema as I need it to be generic and just give me the objects as-is
Ideas?