or
$("#"+ gridName).data("kendoGrid").select($("#"+ gridName).data("kendoGrid").table.find('tr[data-id="'+ rowDataId +'"]'));
This works perfectly if the row is already loaded and in view.
@(Html.Kendo().Tooltip() .Callout(false) .For("#frontNumberSelected") .Position(TooltipPosition.Right) .Width(200) .ContentHandler("changeToolTip") .Events(e => { e.Show("refreshToolTip"); }))function changeToolTip() { var result = ""; if ($(".dcheck").filter(":checked").length > 0) { var toolTipContent = new Array(); $(":checkbox").filter(":checked").each(function () { toolTipContent.push($(this).val()); }); toolTipContent.sort(); toolTipContent.forEach(function (e) { result = result + e + "<br/>"; }); } else { result = "0 selected" } return result; } function refreshToolTip() { this.refresh(); }