Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grid #344

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open

Grid #344

Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions vocabularies/UI.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,47 @@
"@Core.Description": "Name of the Action on the Semantic Object. If not specified, let user choose which of the available actions to trigger."
}
},
"Grid": {
"$Kind": "Term",
"$Type": "UI.GridDefinitionType",
"$AppliesTo": ["EntityType"],
"@UI.ThingPerspective": true,
"@Core.Description": "Visualization of a data grid"
},
"GridDefinitionType": {
"$Kind": "ComplexType",
"Title": { "$Nullable": true, "@Core.Description": "Title of the grid", "@Core.IsLanguageDependent": true },
"Description": { "$Nullable": true, "@Core.Description": "Short description", "@Core.IsLanguageDependent": true },
"Columns": {
"$Collection": true,
"$Type": "UI.DataFieldGridAbstract",
"@Core.Description": "Columns of the grid"
},
"Rows": { "$Collection": true, "$Type": "UI.DataFieldGridAbstract" },
"Actions": {
"$Collection": true,
"$Type": "UI.DataFieldForActionAbstract",
"@Core.Description": "Available actions"
}
},
"DataFieldGridAbstract": {
"$Kind": "ComplexType",
"$Abstract": true,
"$BaseType": "UI.DataFieldAbstract",
"@Core.Description": "Abstract type to restrict usage in Grid"
},
"DataFieldMeasures": {
"$Kind": "ComplexType",
"$BaseType": "UI.DataFieldGridAbstract",
"@Core.Description": "A structured piece of data described by an annotation",
"Measures": { "$Collection": true, "$Type": "Edm.PropertyPath" }
},
"DataFieldDimension": {
"$Kind": "ComplexType",
"$BaseType": "UI.DataFieldGridAbstract",
"@Core.Description": "A structured piece of data described by an annotation",
"Dimensions": { "$Type": "Edm.PropertyPath" }
},
"Chart": {
"$Kind": "Term",
"$Type": "UI.ChartDefinitionType",
Expand Down
Loading