or
grid = new kendo.ui.Grid(
gridContainer,
{
columns: columns,
dataSource: dataSource,
selectable: "multiple, row",
pageable: true,
scrollable: true,
filterable: true,
sortable: true,
change: function () {
// some code regarding selection column
},
dataBound: function() {
// some code regarding selection column
}
}
);
<
div
data-role
=
"view"
style
=
"background: green;"
id
=
"tabstrip-card"
data-init
=
"cardViewInit"
data-title
=
"My card"
data-layout
=
"mobile-tabstrip"
>
content goes here
</
div
>