开发者

How to display a jquery grid on clicking on row in the other grid?

开发者 https://www.devze.com 2022-12-25 16:28 出处:网络
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 r

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();
});
0

精彩评论

暂无评论...
验证码 换一张
取 消