{ field: "UnitsInStock", title: "Units In Stock", width: 120 },
{ field: "Discontinued", width: 120 },
{ command: "destroy", title: " ", width: 150 }],
editable: true,
dataBound: function (e) {
var sender = e.sender;
var cellToEdit = sender.content.find("td:eq(0)");
sender.editCell(cellToEdit);
}
});
The relevant part of the code is in yellow. For your convenience I have also created a dojo example. You can observe that the first cell is programmatically put in edit mode as you required.
Regards,
Venelin
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!