我使用jqGrid 4.9.3-pre - free 这个例子是ok-soft-gmbh.com(Oleg):
但我输入了我的代码行:
ondblClickRow: function (rowid) {
$(this).jqGrid("viewGridRow", rowid, { caption: "Details of the invice" });
}
每次新挑战的模态窗口都在向下移动。 我找到了一条更改的行:
if (!o.recreateForm) {
var formProp = $self.data("formProp");
console.log(formProp)
if (formProp) {
formProp.top = Math.max(formProp.top, 0);
formProp.left = Math.max(formProp.left, 0);
$.extend(o, formProp);
}
}
每次调用时,模式窗口都会增加formProp.top
和formProp.left
。
如何解决这个问题?
对于Oleg:Добрыйдень! МненужновызыватьviewGridRowиeditGridRowкастомно。 Тутпобольшейчаститольковыможетепомочь。 Уменяпривызовемодальногоокна,скаждымвызовомувеличиватсяtopandleft.Примерсвоегокоданепривожу。 Ноеслинужнонапишу。
答案 0 :(得分:0)
感谢您提供错误报告!我刚刚发布了the bug fix。它修改了用于保存先前位置的内部savePositionOnHide
函数的代码
savePositionOnHide = function (propName, frmgr, h) {
var $w = h.w, $form = $(frmgr), $gbox = this.closest(".ui-jqgrid"), top, left;
if ($.contains($gbox[0], $w[0])) {
// we use below .style.height and .style.width to save correctly "auto" and "100%" values
// the "px" suffix will be saved too, but it's not a problem
top = getCssStyleOrFloat($w, "top");
left = getCssStyleOrFloat($w, "left");
} else {
top = $w.offset().top -
($gbox.offsetParent().offset().top +
$gbox.offset().top +
$gbox.position().top +
parseFloat($gbox.css("border-top-width") || 0));
left = $w.offset().left -
($gbox.offsetParent().offset().left +
$gbox.offset().left +
$gbox.position().left +
parseFloat($gbox.css("border-left-width") || 0));
}
this.data(propName, {
top: top, //parseFloat($w.css("top")),
left: left, //parseFloat($w.css("left")),
width: getCssStyleOrFloat($w, "width"), //$(h.w).width(),
height: getCssStyleOrFloat($w, "height"), //$(h.w).height(),
dataheight: getCssStyleOrFloat($form, "height") || "auto",
datawidth: getCssStyleOrFloat($form, "width") || "auto"
});
$w.remove();
if (h.o) { h.o.remove(); }
}
到
savePositionOnHide = function (propName, frmgr, h) {
var $w = h.w, $form = $(frmgr), $gbox = this.closest(".ui-jqgrid"),
getTopOrLeftRelativeToGbox = function (topOrLeft) {
return $w.offset()[topOrLeft] -
($gbox.offsetParent().offset()[topOrLeft] +
$gbox.offset()[topOrLeft] +
$gbox.position()[topOrLeft] +
parseFloat($gbox.css("border-" + topOrLeft + "-width") || 0));
};
this.data(propName, {
top: getTopOrLeftRelativeToGbox("top"),
left: getTopOrLeftRelativeToGbox("left"),
width: getCssStyleOrFloat($w, "width"),
height: getCssStyleOrFloat($w, "height"),
dataheight: getCssStyleOrFloat($form, "height") || "auto",
datawidth: getCssStyleOrFloat($form, "width") || "auto"
});
$w.remove();
if (h.o) { h.o.remove(); }
},
我希望在表单编辑的输入参数的所有组合的情况下解决问题。至少演示https://jsfiddle.net/OlegKi/tzp91wnf/现在可以正常工作。