I need to set the output of a Ui-only formula field to a certain number of decimals based on a field in another model. Basically I’m looking for the equivalent of
value.toFixed({{$Model.OtherModel.data.0.Number_of_Decimals}})
which I could do in a javascript snippet, but there doesn’t seem to be any function similar in the ui-only functions area.
I know I can make a field editor or table, add my values in there, then use a custom render snippet, but I want to show these values in a Template/Text component.