delite/place

delite/place is used to place one DOMNode relative to another DOMNode, or specified rectangle. It is mainly used internally by delite, by the delite/popup code.

around()

place.around() positions one node relative to another.

Here’s an example that tries to put a popup tooltip either to the right, or as a fallback (if there is no room on the right), then on the left, of a textbox:

require(["delite/place"], function(place){
    place.around(tooltip, textbox, ["after", "before"], true);
});

Note that the third argument should normally be true, unless the page is in RTL (Arabic or Hebrew), in which case it should be false.

The possible values for the position parameters (inside the array of the second argument) are:

at()

place.at() positions a node with one corner at a specified position.

Here's an example of showing a context menu aligning one of the corners with the mouse position. It picks a corner such that the menu can be displayed fully within the viewport:

require(["delite/place"], function(place){
    place.at(menu, {x: mouse.x, y: mouse.y}, ["TL", "BL", "TR", "BR"]);
});

The possible values for the position parameter, which specifies the corner of the popup node, are: