Hi,
Try putting this JavaScript in the layout:ready event of your header row;
if (this.index > 0)
{
this.resolveNode("#draw.#value.#text").value = this.parent.resolveNode("HeaderRow.#draw.#value.#text").value + " - Continued";
}
So set the first cell of the header (which I assume is a draw field) to the value of the first cell of the the first header row (which I assume is called HeaderRow) and append the text " - Continued".
If the table grows because of the initial binding and not because of a "add row" button then you could move this code to the docReady event, which wont be called as often. Code in the layout:ready events can be a problem for performance.
Regards
Bruce