I have a kendo grid running with a command button
When I click the button, its appears to not be pulling the closest 'tr' but instead a random 'tr' and then the closest 'tr'
Code:
function showServiceDetails(e){
e.preventDefault();
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
alert(dataItem.layerSource);
}
I'm not getting the correct rows 'layerSource' instead I get another one, then the correct one???
Odd
I've attached a pic of the data
Any insights would be SOO helpful right now.
Cedric