我们如何在 jgGrid 的中间放置一个警告消息对话框?
我jgGrids
在页面上使用了两个并尝试了alerttop
,alertleft
如jqGrid 警告Oleg
中所建议的,
请选择行位置
但问题是,页面中的所有网格都重复使用相同的警报框选项。在jqGrid
ids 中,警报框是静态的,而不是基于网格上下文的。
(行号:4.4.0 源文件中的 8531)
var alertIDs = { themodal: 'alertmod', modalhead: 'alerthd', modalcontent: 'alertcnt' }
以下代码仅针对一个网格执行
*if ($("#" + alertIDs.themodal).html() === null) {
if (!o.alerttop && !o.alertleft) {*
因此,我无法为每个网格放置警报框。