DevExtreme Angular - Overview
The TileView widget contains a collection of tiles. Tiles can store much more information than ordinary buttons, that is why they are very popular in apps designed for touch devices.
The following code adds a primitive TileView to your page.
- <div id="tileViewContainer"></div>
- $(function() {
- $("#tileViewContainer").dxTileView({
- dataSource: [
- { text: "Alabama" },
- { text: "Alaska" },
- { text: "Arizona" },
- // ...
- ]
- });
- });
Note that all data source items in the code above follow the Default Item Template pattern. This provides a default tile appearance, which can be customized later.
By default, the widget is oriented horizontally, but you can orient it vertically using the direction option.
- $(function() {
- $("#tileViewContainer").dxTileView({
- // ...
- direction: "vertical"
- });
- });
See Also
If you have technical questions, please create a support ticket in the DevExpress Support Center.