Use automatic child placement
mainThe LayoutGrid can automatically place children when explicit positioning information is missing or partial. This behavior is controlled by the LayoutGrid.autoPlacement parameter and follows CSS Grid logic.
- No placement info: If a child is not wrapped in
GridPlacementorNamedAreaGridPlacement, it is treated as a 1x1 widget and placed in the first available vacant cell. - Partial placement info: If you provide some parameters (e.g.,
columnStart) but omit others (e.g.,rowStart), the algorithm will search for the first vacant area that satisfies the provided constraints (e.g., finding the first available row in that specific column).