move_items_to_grid_container_by_column
Moves items to a grid container by filling positions column by column, enabling specific experimental layouts with automatic positioning that fills down columns before moving to the next column.
Instructions
Moves items to grid container, filling positions column by column
Usage: Alternative filling pattern for specific experimental layouts Auto-positioning: Fills down columns before moving to next column Returns: Success status and final positions of moved items
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_ids | Yes | ||
start_column | No | ||
start_row | No | ||
target_container_id | Yes | ||
total_columns | No | ||
total_rows | No |
Input Schema (JSON Schema)
{
"properties": {
"item_ids": {
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
},
"start_column": {
"default": 1,
"title": "Start Column",
"type": "integer"
},
"start_row": {
"default": 1,
"title": "Start Row",
"type": "integer"
},
"target_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Target Container Id"
},
"total_columns": {
"default": null,
"title": "Total Columns",
"type": "integer"
},
"total_rows": {
"default": null,
"title": "Total Rows",
"type": "integer"
}
},
"required": [
"target_container_id",
"item_ids"
],
"type": "object"
}