If you look onto this working example of itemref usage:
<table>
<col itemscope itemref="a0 a1 a2"></col>
<tr>
<th>Who</th>
<td id=a0 itemprop=band>Tub Ring</td>
</tr>
<tr>
<th>When</th>
<td id=a1><time itemprop=date datetime=2010-01-01>The Big Fool Day!</time></td>
</tr>
<tr>
<th>Where</th>
<td id=a2 itemprop=location>Atlantis!</td>
</tr>
</table>
, you see, that itemref can contain some id's, just divided by a space. My question is: how many? How many id's i can put into itemref?
I have a page with 4 types and ca. 80 properties.
Would somebody give me an advice?
thanks
Put as many as you like. The standard sets no restriction and any implementation specific limit of the number of properties is most unlikely to be lower for itemrefs than for properties established via descendent elements.