Hi,
I have the below code in list page java onload.
This works fine in 5.2 but 6.2 executes slightly different.
Row highlights but expands the list row slightly on the list page which I have used the "scroll data table" function.
Clicking the row you would expect it to go to the edit page.
Have tried various ways but unable to get working correctly.
Any ideas or direction much appreciated.
$("tr[id^='gridRow']").hover(function(){
$(this).children().addClass('highlight');
this.style.cursor='hand';
},function(){
$(this).children().removeClass('highlight');
});
$("a[id^='editLink']").bind('click', function() {
return false;
});
$("tr[id^='gridRow']").click(function(e){
$(this).find("a[id^='editLink']").trigger('click');
this.style.cursor='hand';
});