ui-data-grid
Create interactive data grids from SAP OData entities with sorting, filtering, pagination, and export capabilities for data analysis.
Instructions
Creates interactive data grids with sorting, filtering, and export capabilities
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columns | Yes | Grid column definitions | |
entityType | Yes | SAP entity type for the grid | |
features | No | Grid feature enablement |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"description": "Grid column definitions",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"label": {
"type": "string"
},
"type": {
"enum": [
"text",
"number",
"date",
"boolean"
],
"type": "string"
}
},
"required": [
"label",
"key"
],
"type": "object"
},
"type": "array"
},
"entityType": {
"description": "SAP entity type for the grid",
"type": "string"
},
"features": {
"additionalProperties": false,
"description": "Grid feature enablement",
"properties": {
"export": {
"type": "boolean"
},
"filtering": {
"type": "boolean"
},
"pagination": {
"type": "boolean"
},
"sorting": {
"type": "boolean"
}
},
"type": "object"
}
},
"required": [
"entityType",
"columns"
],
"type": "object"
}