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?