Looping Grid Update Bug
I have a grid that I map and loop a service response to,
with this code from the $ mapping to the grid:
element.on("click", function () {
Apperyio.storage.selected_isle.set(value);
console.log(Apperyio.storage.selected_isle.get("$['name']"));
});
element.on("taphold", function () {
Apperyio.storage.selected_isle.set(value);
});
which saves the selected item to storage.
Here is my page after the service:
The component "sort" is a number input box with a value change event that fires an update service.
My issue is that when the update service triggers, the label and the input clears and the data in the database is replaced with nothing, or in other words, clears as well. Why is this?
Shared with Support.
Just open the app, click the menu button on the top left and click the Isles list item.