Hi,
I would like to place the popover on a specific row (height from the top). The row needs to be selected dynamically.
So I initiated the popover with the selector pointing to the container of the rows
$("#errQ").jqxPopover({
arrowOffsetValue: 10,
position: "top",
width: 200,
height: 75,
title: "oops",
showCloseButton: true,
autoClose:true,
selector: $("#innerbody")
});
When it it time to open the popup, I have tried two different ways, but in both ways, the popup appears bottom left of the screen, outside of the div #innerbody.
One way is to change the offset:
$`(popclass).jqxPopover({ offset: { left: left, top: top } });
$(popclass).jqxPopover(‘open’);`
The other way I tried was to change the selector
$(popclass).jqxPopover({ selector: idMissing[0].id });
$(popclass).jqxPopover('open');
Is this possible at all? Can you give me hint what I am doing wrong?
Thanks
Pieter