
I have a collection and one of the columns is of type table. to display and manipulate this data, I'm using 2 galleries, one of which is nested in the first. the top level gallery works great, as I can add and remove the items from the collection and the updates are shown. However, when I try to update the inner table, the updates succeed, but they don't display. I tried refreshing but it doesn't work, too.
when adding to top level table, using combo box outside of both tables:
OnChange = Collect(newChecklist, {
Value: Self.Selected.Name, Checkpoints: Table(
{Name: "", Support: 2},
{Name: "eeeee", Support: 3}
)
}); Reset(Self)
when adding to inner table, using button in top level gallery:
OnSelect = Collect(LookUp(newChecklist, Value=ThisItem.Value).Checkpoints, {Name: "", Support: 2});
Reset(ZoneGallery)
when removing from top level table, using button in top level gallery:
OnSelect = Remove(newChecklist, LookUp(newChecklist, Value=ThisItem.Value))
when removing from inner table, using button in inner gallery:
OnSelect = Remove(LookUp(newChecklist, Value = ZoneTitle.Text, Checkpoints), ThisItem)