Hey, my HTML view form is working nicely except for a link issue I've been unable to fix - a pesky html link that forces open a new window. The table below calls the variable "BlogLink" into a table cell, creating a list of blog pages on wine (sorted by rating) with links to the individual blog pages for each wine. On the blog, since these links are in a iFrame, they force open a new window, frustrating for visitors. Is there a way to fix this with scripting? I have tried the instructions at the Open URL help center page here:
These instructions don't work for me. I don't know how to make the script pick up the BlogLink field. Would love some help, as specific as possible since I'm very new at this.
PS - It sure would be nice if in the form menu we could select an option for a link to open in _top, and not just new or same, which are the only two options at present. Seems like that could fix it.
<table border="0" cellspacing="10" cellpadding="5" width="450">
<tbody>
<tr>
<td valign="top" width="87%">
<table class="zc-viewtable" border="0" cellspacing="0" cellpadding="3" width="450">
<tbody>
<tr class="zc-viewheader zc-viewheader-height">
<td width="75%">Wine</td>
<td>Cost</td>
<td>Rating</td>
</tr>
<%for each r in Reviews_Wines sort by Rating desc
{%>
<tr class="zc-viewrow zc-row-1">
<td id="ZohoTableText"><%=r.BlogLink%> </td>
<td><%=r.Rating%> </td>
<td><%=r.Rating%> </td>
</tr>
<%}%>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>