Would it be easy to have new feilds in the detail page from feilds that come from a differant table not just from the links table...
Lets say there is feild <%item1%>
and it needs to come from a new table called... idx_newtable and not from idx_link
Would it be easy to have new feilds in the detail page from feilds that come from a differant table not just from the links table...
Lets say there is feild <%item1%>
and it needs to come from a new table called... idx_newtable and not from idx_link
you could do something like
global=%conn;
$query = "select item1 from idx_newtable where link_id = '$id";
$result = $conn->Execute($query);
$item1 = $result->Fields("item1");
then add $item1 to the DisplayTemplate
I added the "where link_id = '$id'" but you will need to establish the linkage
esm
"The older I get, the more I admire competence, just simple competence, in any field from adultery to zoology."
.