gridstack_move_widget
Reposition widgets within dashboard layouts by specifying new X and Y coordinates to organize grid elements according to your design requirements.
Instructions
Move a widget to a new position
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| el | Yes | Widget selector or ID to move | |
| x | No | New X position | |
| y | No | New Y position |
Input Schema (JSON Schema)
{
"properties": {
"el": {
"description": "Widget selector or ID to move",
"type": "string"
},
"x": {
"description": "New X position",
"type": "number"
},
"y": {
"description": "New Y position",
"type": "number"
}
},
"required": [
"el"
],
"type": "object"
}