Hi Friends!
Trying to figure out why the href links from the HTML module is bleeding into the table module when the HTML should be isolated. The only way i can fix it is to put a timeselector module in between them but i don't need a timeselector module.
Essentially, when you click anything on the lower 'table' module it puts you in test2 href from the upper HTML module... Shouldn't "" prevent that?
<param name="html"><script type="text/javascript">
popupWindow = window.open(
url,'popUpWindow','height=500,width=850,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
}
</script>
<table> <tr><td width='100%'></td><td align='left'>
</td>
<a align='left' target="self" href="test1"><b>◄test1►
<a align='left' target="self" href="test2"><b>◄test2►
</tr>
</table>
</param>
</module>
<module name="HiddenSavedSearch" layoutPanel="panel_row2_col1" group="test3" autoRun="True">
<param name="useHistory">True</param>
<param name="savedSearch">test3</param>
<module name="JobProgressIndicator" />
<module name="Paginator">
<param name="count">10</param>
<param name="entityName">results</param>
<module name="Table" layoutPanel="panel_row2_col1">
<param name="count">1000</param>
</module>
</module>
</module>
... View more