A script-enabled browser is required for this page to function properly.

ID property

The ID property is one of the accessibility properties designed to make reports accessible to the disabled community when output to HTML or PDF. This property specifies an ID for a column heading. It is used with the Headers property to specify the headings associated with each data cell in a table. With assistive utilities, the column heading can be displayed in a popup or read by a screen reader when the cursor passes over a table cell in report output.

Applies to

Boilerplate text objects, fields

Values

A text string not to exceed 256 characters

Default

Blank 

Required/Optional

Optional for paper reports, but required for accessible HTML reports

 Usage notes

Example

<TABLE>
  <TR> 
  <TH ID="HeadCol1" ABBR="Column 1">
  Heading for Column 1
  </TH>
  <TH ID="HeadCol2" ABBR="Column 2">
  Heading for Column 2
  </TH>
  </TR>
  <TR>
  <TD HEADERS="HeadCol1">Data 1</TH>
  <TD HEADERS="HeadCol2">Data 2</TH>
  </TR>
</TABLE>

See also

Other accessiblity properties:

Alternative Text property (HTML or PDF)

Headers property (HTML or PDF)

Report Language property (HTML or PDF)

Table Caption property (HTML or PDF)

Access Key property (HTML only)

Label for Field property (HTML only)