Hello, Ryan,
The Kendo UI Grid for ASP.NET MVC offers the checkbox selection functionality out of the box by just adding a selectable column to the configuration as demonstrated in this online demo:
https://demos.telerik.com/aspnet-mvc/grid/checkbox-selection
Whether you decide to use the built-in checkbox selection or not, you can add a click handler to the grid tbody and get the currently selected row and use the grid client-side method editRow() to open the row for editing:
https://dojo.telerik.com/@bubblemaster/ayAhASUQ/2
$("#grid tbody").on("click", ".k-checkbox-label", function(e){
var grid = $("#grid").data("kendoGrid");
var selectedRow = $(e.target).closest("tr");
grid.editRow(selectedRow);
});
Let me know in case you have further questions.
Kind Regards,
Alex Hajigeorgieva
Progress Telerik
Get
quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.
Learn More.