Skip to main content
dublove
Legend
December 25, 2024
Question

What is the code to skip the header row of the first page, please?

  • December 25, 2024
  • 1 reply
  • 349 views

What is the code to skip the header row of the first page, please?

Thank you.

This topic has been closed for replies.

1 reply

Willi Adelberger
Community Expert
Community Expert
December 25, 2024

Please define the qustion. I don't see, what you want to perform.

dublove
dubloveAuthor
Legend
December 25, 2024

For example the first two rows of a table are header rows, how to skip the header rows on the first page with a script.

brian_p_dts
Community Expert
Community Expert
December 25, 2024

Helps to see the context within the code you are working. You could, for instance, start at myTable.rows.item(2)

 

The Row DOM object also has the property .rowType that points to a set of fixed types. So you can check: 

if (myRow.rowType != RowTypes.HEADER_ROW) {

    //do something

}