开发者

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜