jQWidgets Forums

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 10 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • tooltip position #56252

    arkgroup
    Participant

    I have this code for grid:
    cellhover: function (element, pageX, pageY) {
    $(“#jqxgrid”).jqxTooltip(‘destroy’);
    var tooltipContent = “<div style=’color: Red;’>Quantity entered exceeded</div>”;
    $(“#jqxgrid”).jqxTooltip({position: ‘top’, content: tooltipContent, showArrow: true });
    // open tooltip.
    $(“#jqxgrid”).jqxTooltip(‘open’, pageX + 15, pageY + 15);
    },
    Tooltip does not show on top and no arrow. I tried different position, it still show on the bottom-right.

    tooltip position #56264

    Dimitar
    Participant

    Hello arkgroup,

    When you call the open method with parameters, it opens as if set to position: "absolute". This means the tooltip opens with no arrow at the position defined by the coordinates (parameters).

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.