How to display a jquery grid on clicking on row in the other grid?
How can I display a second grid on 开发者_如何学Goclicking on a row from the first grid?
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();
});
精彩评论