SMART datagrid v.1 > Reporting > Classes > PrintItem
The vertical (row) location of the cell in which is displayed the item when it is contained in Tile.
The horizontal (column) location is specified as col.
Defaults to 0.
var tile = {
type: "tile",
cols: 5,
rows: 5,
items: [{
col: 0,
row: 0,
text: "Cell 0-0"
}, {
col: 1,
row: 0,
text: "Cell 0-1"
}]
};