Hi Guys,
I’m trying to format the XML thats loaded into a tree (the tree contains search results in an app).
in the php file i have code
$DispCustName = str_ireplace($_GET[searchTxt],“<![CDATA[".$_GET[searchTxt]."]]>”, $CustName);
$ReturnString .= “<item id="CU$row[custid]" im0=‘smcust.png’ im1=‘smcust.png’ im2=‘smcust.png’ >$DispCustName”;
this creates for example XML such as
− jane Ball − jane Doherty − jane Hughes − jane Stevenson − jane Stewart − jane Wicklow Rose ofthis should (I thought) format some of the node text in red and the rest as normal, however all that is seen on the tree is the text inside the tags and not the remainder… not sure why this is?
thanks!