New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
TileGroupCollection Object
Updated over 6 months ago
A TileGroupCollection is obtained by calling the get_groups() methodfrom the RadTileList client-side API.
The Telerik.Web.UI.TileList.TileGroupCollection object exposes the following public methods and properties to control its behavior:
TileGroupCollection Client-Side Methods
| Name | Parameters | Return Type | Description |
|---|---|---|---|
| add(item) | TileGroup | Adds the group passed as a parameter to the collection. | |
| clear() | Clears the tile groups in the RadTileList. | ||
| forEach(function) | function | Executes the passed function for each group in the collection, while passing the given group as an argument to the said function. | |
| getItem(index) | integer | RadTileGroup | Returns group at the passed index in the collectoin returned by the get_groups RadTileList method. |
| get_count() | integer | Returns the number of tile groups in the RadTileList | |
| indexOf(item) | RadTileGroup | integer | Returns the index of the group passed as a parameter. Returns -1 if there is no match. |