UFM for Slider property editor?

Hi,

If i do this for a slider where you can set one value: {= sliderField}, then it renders as [object Object].

What is the correct way of getting the value and where can you find these magic strings? I can’t find any documentation on the different property editors on how to get the correct UFM strings.

Hi @kaaremai

You will need to access the relevant property in the object, something like {= sliderField.value}, but I’ve not tested it. I couldn’t find any docs for individual property editors.

Justin

As above if I recall it’s

Single-value slider

{= sliderField.value }

Range slider

Depending on the structure

{= sliderField.min } – {= sliderField.max }

or

{= sliderField.minimum } – {= sliderField.maximum }