aria-rowindex
IntegerGives a row (or cell) its position within the full set of rows when not all rows are rendered, such as an infinite-scrolling grid. The 1-based index refers to the complete data set, so screen readers can announce 'row 250 of 1000'. It's used together with aria-rowcount.
Value
Any integer.
Used on
<tr><td><th>
Associated roles
Example
aria-rowindex="…"
<div role="row" aria-rowindex="312">…</div>References