I’m building a Quarterly Reflections screen with sliders for 8 life categories. I save the data to a collection (QuarterlyReflections) and noticed that after refreshing the app, the slider values seem to reset visually but the data is actually saved in the database. When I use a custom list to display the scores, they show up correctly even after refreshing. Why do the sliders not reflect the saved values on screen reload, and how to fix that?
Hello!
Your sliders visually reset because they aren’t told to load saved values on screen refresh, unlike your custom list which directly displays the data. To fix this, set each slider’s Default or Value property to pull its corresponding score from your QuarterlyReflections collection. This typically involves fetching the relevant reflection record (e.g., for the current user and quarter) and then binding SliderCategory1.Default to varCurrentReflection.Category1Score, and so on, so sliders reflect saved data when the app loads.