Hello Experts,
I have a requirement where I need to add a Floor Map created using HTML into Canvas Application making each HTML element clickable. For Example,
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td>Alfreds Futterkiste</td>
<td>Maria Anders</td>
<td>Germany</td>
<td><button>Click1</button></td>
</tr>
<tr>
<td>Magazzini Alimentari Riuniti</td>
<td>Giovanni Rovelli</td>
<td>Italy</td>
<td>Italy</td>
<td><button>Click2</button></td>
</tr>
</table>
In the above HTML Can I make the Button:Click 1 and Click 2 as clickable and navigate to a different screen on clicking the button which is placed inside the HTML element?
Your help is greatly appreciated. Thank you!