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.
所以我创建了一个分层网格来填充和自动扩展所有节点(我将它用作报告显示。我们不想让用户折叠节点)
但是,删除“折叠”图标仍然会在父节点左侧留下一个小“热点”,如果用户不小心点击它,那么记录将出现“消失”。
如何禁用“折叠”功能?
http://jsfiddle.net/KevinGabbert/ZB2De/3/
知道了..
因为我在网格时自动展开所有节点,所以我可以在展开后立即取消绑定事件。
前:
$(".sgcollapsed","#tableToLoad").each(function() { $(this).trigger("click"); });
后:
$(".sgcollapsed","#tableToLoad").each(function() { $(this).trigger("click").unbind('click'); });
http://jsfiddle.net/KevinGabbert/ZB2De/11/