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.
我的下拉列表中有以下数据结构:
External Test Test2 Internal Internal2 Internal3
当我从过滤器下拉列表中选择父项时,我试图在网格中同时获取父项和子项。
例如:选择外部时,我想在JQGrid中获得外部,测试和Test2。
这有可能吗?
我不知道 jqgrid 初始化设置,但你可以像做脏黑客一样
$('parent selector').click(function () {$(this).children().click(); return true;});
或使用 jqgrid api 加载数据。