Hi
Is it possible to have a command and field in 1 column of a Grid? Something along the lines of::
Where in line number 11 below the 3 column would include the data value for products and a button (in this case just to edit the products for 1 line in grid)
01.
var
grid = $(
"#grid"
).kendoGrid({
02.
dataSource: {
03.
pageSize: 20,
04.
data: createRandomData(50)
05.
},
06.
pageable:
true
,
07.
height: 550,
08.
columns: [
09.
{ field:
"FirstName"
, title:
"First Name"
, width:
"140px"
},
10.
{ field:
"LastName"
, title:
"Last Name"
, width:
"140px"
},
11.
{ field:
"products"
, command: { text:
"Edit Product List"
, click: showDetails }, title:
" "
, width:
"180px"
} ]
12.
}).data(
"kendoGrid"
);
Thanks in Advance