jqgrid中删除行后如何去除阴影?
How to remove the shadow after delete the row in jqgrid?
如何去掉删除行后的阴影,
我参考了 this link 的代码。
删除行并收到确认提示后,我重新加载完整div,唯一的问题是阴影(白色模糊背景色)。
我已经使用代码代码去除了阴影。它最初可以工作,但是当我尝试删除另一行时它没有显示删除确认提示。
$(".ui-widget-overlay").hide();
$(".ui-widget-overlay").remove();
$(".ui-widget-overlay").css("opacity","0.0");
见下图
您使用了非常古老的演示,其中使用了 $("#delmod" + grid[0].id).hide();
。将 .hide()
的调用替换为 $.jgrid.hideModal
的调用将解决问题(参见 the old demo). See the answer, this one or the answer
如何去掉删除行后的阴影,
我参考了 this link 的代码。
删除行并收到确认提示后,我重新加载完整div,唯一的问题是阴影(白色模糊背景色)。
我已经使用代码代码去除了阴影。它最初可以工作,但是当我尝试删除另一行时它没有显示删除确认提示。
$(".ui-widget-overlay").hide();
$(".ui-widget-overlay").remove();
$(".ui-widget-overlay").css("opacity","0.0");
见下图
您使用了非常古老的演示,其中使用了 $("#delmod" + grid[0].id).hide();
。将 .hide()
的调用替换为 $.jgrid.hideModal
的调用将解决问题(参见 the old demo). See the answer, this one or the answer