tags:

views:

23

answers:

1

Can anybody help me out..

how to display the second grid on clicking on first gird frist row?

Thanks

A: 

You didn't provide any code/markup to reference. But, just for any generic grid (I assume you mean table) and row, maybe this could help?

$('#firstGrid tr:first').click(function() {
    $('#secondGrid').show();
});
Bob
This is not working for me Bob?thanks
kumar