I have below script but aware process does not recognize the selection although it shows as selected, I have to manually uncheck and check the box for aware.
widget.bind("dataBound", function(e) {
var data =widget._data;
console.log('ami');
var selectedItem = data[3];
console.log(selectedItem);var grid1=$(".k-grid").eq(1).data('kendoGrid');
widget.select(selectedItem);
var tr1 = $("#grid").find("[data-uid='" + selectedItem.uid + "']");
console.log(tr1);
widget.tbody.find("tr[data-uid='" + selectedItem.uid + "']")
.addClass("k-state-selected")
.find(".k-checkbox")
.attr("checked", "checked");
});