function nestedGridRowSelected(sender, args) {
var myId = args._id;
var myMatches = ("#" + myId + " span");
var childId;
$(myMatches).each(function () { if ($(this).attr("data-customergridid")) { childId = $(this).attr("data-customergridid") } });
var matches = $("#" + childId + " input[type='checkbox']");
matches.prop("checked", true);
}
function nestedGridRowDeselected(sender, args) {
var myId = args._id;
var myMatches = ("#" + myId + " span");
var childId;
$(myMatches).each(function () { if ($(this).attr("data-customergridid")) { childId = $(this).attr("data-customergridid") } });
//if (childId.is("input ")) {
var matches = $("#" + childId + " input[type='checkbox']");
$(matches).prop('checked', true);
//}
}