How to make AG-Grid Table row click callback that points another row

I have directed Graph data and using dash-AG-Grid to describe it as Table.
Each table rows have node features and as it is Graph data, each row points another row like below.

idx | pointing

0 | 2
1 | 3
2 | 4
3 | 10

10000 | 1
10001 | 10

Is there any way to make a callback that make link to shifts to the pointing row if I click a row?

thankyou

Hello @wowwwn,

Do you mean like some sort of hyperlink?

Yes, hyperlink that links to its specific row in its table, with auto scrolling would be what im looking for.

Thanks for always answering questions.

Can you give some test data or a snippet of a code to work with?