I managed to focus on the specific cell that did this:
$($($(".ngCellText.col1.colt1")[0]).parent()).parent().focus();
.col1.colt1 refers to the second column (.col0.colt0 → 1st column)
In this case, I select the first row, the second row will be selected with:
$($($(".ngCellText.col1.colt1")[1]).parent()).parent().focus();
This is a bit hacky, but it works.
source share