SMART datagrid v.1 > Reporting > Classes > PrintItem
当被包含在Tile时,显示项目的单元格的垂直(行)位置。
通过col而指定水平(列)位置。
默认值为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"
}]
};