Auflistung von Rezepten in einem Datagrid

- 1. Instanz eines TcHmiDataGrid-Controls erstellen.
- 2. Legen Sie das folgende JSON-Objekt als Attribut Columns fest.
[
{
"name": "RecipeName",
"label": "%l%Recipe%/l%",
"control": "TextBlock",
"width": 50,
"widthUnit": "%",
"resize": false,
"sortable": true,
"minWidth": 100,
"minWidthUnit": "px",
"cellBackground": null,
"textColor": null,
"editable": false,
"horizontalAlignment": "Center",
"verticalAlignment": "Center",
"headerHorizontalAlignment": "Center",
"headerVerticalAlignment": "Center"
},
{
"name": "RecipeLastUpdatedTime",
"label": "Last Updated",
"control": "TextBlock",
"width": 50,
"widthUnit": "%",
"resize": false,
"sortable": true,
"minWidth": 100,
"minWidthUnit": "px",
"cellBackground": null,
"textColor": null,
"editable": false,
"horizontalAlignment": "Center",
"verticalAlignment": "Center",
"headerHorizontalAlignment": "Center",
"headerVerticalAlignment": "Center",
"format": {
"objectType": "Function",
"active": true,
"fn": "TcHmi.Functions.Beckhoff.ToDateTimeString",
"fnParams": [
{
"objectType": "StaticValue",
"valueType": "tchmi:general#/definitions/Locale",
"value": null
}
]
}
}
]
- 3. Legen Sie die Funktionsbindung wie folgt als Attribut
SrcData
fest.
"%f%TcHmi.Functions.Plastic.ListActDataTypeRecipes(%s%TcHmiRecipeManagement.Config::recipeList%/s%)%/f%"