Grid View
Grid View components provides a list of grid-type items and presents contents that are easily identified as images.
You can adjust the number of columns of grid using a pinch gesture. In reorder mode, you can move each item.
Grid view can have labels and you set the type of the labels.
Table of Contents
Default Selector
By default, all UI elements with the class="ui-gridview"
or data-role="gridview"
attribute are displayed as grid view components.
Manual Constructor
To manually create a grid view component, use the component constructor from the tau
namespace:
The constructor requires an HTMLElement
parameter to create the component, and you can get it with the document.getElementById()
method. The constructor can also take a second parameter, which is an object defining the configuration options for the component.
<ul id="gridview" class="ui-gridview"> <li class="ui-gridview-item"> <img class="ui-gridview-image" src="images/1.jpg"> <div class="ui-gridview-handler"></div> </li> <li class="ui-gridview-item"> <img class="ui-gridview-image" src="images/2.jpg"> <div class="ui-gridview-handler"></div> </li> <li class="ui-gridview-item"> <img class="ui-gridview-image" src="images/3.jpg"> <div class="ui-gridview-handler"></div> </li> <li class="ui-gridview-item"> <img class="ui-gridview-image" src="images/4.jpg"> <div class="ui-gridview-handler"></div> </li> </ul> <script> var elGridView = document.getElementById("gridview"), gridView = tau.widget.GridView(elGridView); </script>
Options
Option | Input type | Default value | Description |
---|---|---|---|
data-cols | number | 4 | The number of columns to be displayed. |
data-reorder | boolean | false | Represents whether grid view is reorder mode. |
data-label | string | "none" | The type of label to be attached to grid item ("none", "in", "out"). |
data-min-width | number, string | null | Minimum width px of grid item (number or "auto"). |
data-min-cols | number | 1 | The minimum number of columns. |
data-max-cols | number | 5 | The maximum number of columns. |
Methods
To call method on GridView, see the following code:
var elGridView = document.getElementById("gridview"), gridView = tau.widget.GridView(elGridView), item; gridView.methodName(methodArgument1, methodArgument2, ...);
Summary
Method | Description |
---|---|
addItem ( ) |
Adds an item to grid view. |
removeItem ( ) |
Removes an item from grid view. |
addItem
-
Adds an item to grid view.
addItem (HTMLElement item)
Parameters:
Parameter Type Required / optional Description item HTMLElement Required The element to be added. Return value:
No return valueCode example:
<script> var elGridView = document.getElementById("gridview"), gridView = tau.widget.GridView(elGridView), item; gridView.addItem(item); </script>
removeItem
-
Removes an item from grid view.
removeItem (HTMLElement item)
Parameters:
Parameter Type Required / optional Description item HTMLElement Required The element to be removed. Return value:
No Return ValueCode example:
<script> var elGridView = document.getElementById("gridview"), gridView = tau.widget.GridView(elGridView), item; gridView.removeItem(item); </script>