This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Description
function rowCallback(nRow, aData) {
$('td', nRow).unbind('click');
$('td', nRow).bind('click', function () {
$scope.$apply(function () {
$scope.catalogs.someClickHandler(aData);
});
});
return nRow;
}
I am able to grab value of selected row but not able to highlight s=that row using some background color.