is there a simple way to display the values of an Enum array in a TableItem textually? One can connect it via value mapping, but then you get the numerical equivalent displayed. Is there perhaps something like the DataProvider in a dropdown where texts can be assigned to the numerical values?
Perhaps I should also mention that this all takes place within a compound widget, and I only want to map the structure that includes the enum array. Ideally, everything needed to convert the number into text would be included in the widget library.
But i have now created a string array in the PLC program, which is populated with text in the PLC program. This can then be mapped to the stringValue of the TableItem with an additional mapping. However, I find this solution somewhat unsightly.