Hello
I have a slider in a gallery that patches its value (1-10) to a collection. Each row in the collection has a slider value. Here is the OnChange formula for the slider:
Patch(
LocalCollection,
LookUp(LocalCollection, name = ThisItem.name && type = "range"),
{
SliderValue: Slider2.Value,
validations: Patch(
LookUp(LocalCollection, name = ThisItem.name).validations,
{
optionValues: Split(TextInput2.Text, ","),
regex: TextInput1.Text
}
),
localeText: Patch(
LookUp(LocalCollection, name = ThisItem.name).localeText,
{
en: Patch(
LookUp(LocalCollection, name = ThisItem.name).localeText.en,
{
optionsText: TextInput3.Text
}
)
}
)
}
);
Attached is a video of what happens when I change the slider and the value is patched. Is there any way to remedy this visual tick? Has anyone seen this before?
Thanks
GotYah!

Report
All responses (
Answers (