Link button, get Row Id?

Hello!
I put links in my grid via JSON:

rows : [
{
data : [‘link’],
id : 1
}
]

How I can get row ID, when user clicks on my custom links?

I bind event for this link:

mygrid.attachEvent(“onXLE”, function() {
$(’.del-link’, this.entBox).click(function(e) {
e.preventDefault();
e.stopPropagation();

	/*I need row ID here, Help :slight_smile: */
});

});

But, How I can get Row ID?

Thank you?

Unfortunately in case of clicking on the link the cell is not selecting. You may try to add an id to the link duplicating the id of the row inclusive that link and work with the id of the link.