I would like to define an area inside a table on an XPage and then partially refresh this area when a button is clicked. I have no problem using partial refresh with a panel but I do not know how I can define an area to be refreshed which is inside a table. I have tried unsuccessfully with "div" and "xp:span" tags to define such an area. Here is what I am doing:
<xp:table>
<xp:div id="RefreshAreaID">
<xp:tr>
<xp:td>
<xp:label value="Row 3" id="label3"></xp:label></xp:td>
<xp:td></xp:td>
</xp:tr>
<xp:tr>
<xp:td>
<xp:label value="Row 4" id="label4"></xp:label></xp:td>
<xp:td></xp:td>
</xp:tr>
</xp:div>
When I add the xp:div tags, I no longer see the rows and cells it contain on the XPages design editor.