Whoops, I spoke too soon. When I mouseover a record in the Query widget, I see the new popup with the properly embedded picture (see attached ViaQuery.jpg). However, WITHOUT the Query widget open, if I simply configure the popup to display the field that has the photo links it just shows up as a link (NoPhoto.jpg):<configuration>
<title>{DESC_}</title>
<fields>
<field name="DESC_"/>
<field name="HYPERLINK" visible="true"/>
</fields>
</configuration>
I also tried using the <description> tag, and found that if I include {HYPERLINK} the picture is embedded but the height doesn't expand to show the whole picture (see CutOffPhoto.jpg). If I use <img src="{HYPERLINK}"/> nothing is displayed at all. In the code below I have it both ways, but you get the same result with just {HYPERLINK} w/out the img src bit.<?xml version="1.0" ?>
<configuration>
<title>{DESC_}</title>
<description><![CDATA[<a href="{HYPERLINK}"><img src="{HYPERLINK}"/>{HYPERLINK}</a>.<br>a. ]]>
</description>
<fields>
<field name="DESC_"/>
<field name="HYPERLINK" />
</fields>
</configuration>
So can someone clarify the proper way to have embedded photos properly handled by the new popups without having to use the Query widget?