Selected enumeration value for the Enum Slider

0
I want to use the Enum Slider from the App Store for selecting different Enumeration values and use the selected value in a Micro flow. I want to update the selected value in a configuration Entity which contains the enumeration values of the Enum Slider.   The slider works as a charm, however I can't find documentation about how I can get the selected value?
asked
2 answers
1

The selected value is in the atttribute of the entity with the enumeration you have chosen. So if I have the entity Test with the attribute testenum that is connected to some enum. The enum slider you have placed on a form with the Test object on it.

In the on change microflow the object is passed, so based on the value in the testenum you can do the stuff you want, because the testenum attribute will hold the selected value.

Regards,

Ronald

 

answered
1

Normally you don't need extra functionality to read or update the selected value, the widget should change the attribute of the object and that value is available in the microflow.

 

Edit: version from Github works here in 6.5.1

 

answered