Fb:user-table
From Facebook Developer Wiki
Description
Renders a table, each cell of which contains a thumbnail and name for a particular user, similar to the Mutual Friends table on profile pages. Inside this tag, use fb:user-item tags to specify the set of users. This tag only works on profile pages. Applications cannot use this on their canvas pages.
Attributes
| Required | Name | Type | Description | |
| optional | cols | int | The number of columns in the table. (Default value is 6 for fb:wide, 3 for fb:narrow.) |
|---|
Examples
<fb:user-table cols="3">
<fb:user-item uid="12345" />
<fb:user-item uid="123456" />
<fb:user-item uid="123457" />
<fb:user-item uid="123458" />
<fb:user-item uid="123459" />
<fb:user-item uid="123450" />
</fb:user-table>
