Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击子网格中工具栏中的按钮时,有什么方法可以获取父行的 id?
截至目前,我不能使用自定义按钮,因为我不知道它应该有哪个 FK..
我尝试了以下方法,但它只返回子网格的第一行。
var grid = $(this); var currentRow = grid.jqGrid('getRowData', 0);
我发现子网格的名称得到了以下名称:Jqgrid_PARENTID_t
所以我最终用正则表达式提取了下划线之间的值。