我正在使用jquery-bootgrid作为数据网格管理器。现在可以从隐藏列中获取值吗?
答案 0 :(得分:0)
的console.log($(本)。数据("行-ID&#34));
var $ tr_parent = $(this).parents(" tr")。first();
的console.log($ tr_parent.children(' TD')当量(3)的.text());
这段代码很好用
jut td count start 0 to X
您计算td数字包含数据并按td
的数量获取数据答案 1 :(得分:0)
要获取隐藏的列行值,您需要为该列添加data-identifier="true"
。然后,如果它在行上单击,则可以通过var id= $(this).data("row-id")
;
答案 2 :(得分:0)
这对我有用。 选择“编辑”按钮时:
grid.find(".command-edit").on("click", function(e)
{
var ele =$(this).parent();
var FirstColumn = ele.siblings(':first').html();
var SecondColumn = ele.siblings(':nth-of-type(2)').html();
var ThirdColumn = ele.siblings(':nth-of-type(3)').html();
}