The AbsoluteLayout control is a layout which positions its child controls using the CSS position: absolute; functionality. It is recommended to use this layout only for areas with a fixed size. Otherwise an overlapping of controls is possible when the area is resized - this depends on the scenario.
The following example shows an AbsoluteLayout used to visualize a beach area and allows reservation of canvas chairs. The position of a child can be specified via a JSON like object when the child is added
via the function addContent
, or afterwards by using the function setPositionOfChild
. The default position is top:0px; left:0px;
.
The AbsoluteLayout control as a layout has no specific implementation for keyboard or ARIA support.