Can anybody help me out..
how to display the second grid on clicking on first gird frist row?
Thanks
Can anybody help me out..
how to display the second grid on clicking on first gird frist row?
Thanks
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();
});