I am using CloudDB to store values in a ListView. These values are provided in the TextBox, and are added added to the ListView when 'Add' Button is clicked. When I reinitiate the screen, the existing values stored in the ListView are displayed. But when I 'Add' a new value through the TextBox using the 'Add' Button, it overrides the existing values.
I am trying to create one list where 2 people can add items which should reflect for both. When a person deletes/updates an item, it should reflect for the other person too. Both should be able to add items individually to the same list. The delete and update options are working. The items in the list are added, when the session is reinitiated, the existing list displays, but when a new item is added, the previous list disappears
Don't use text empty tests on lists. Only use Is List Empty tests on lists.
An empty list becomes '[ ]' when you try to squeeze it through a text block. The '[' and ']' characters are not blank, so an empty list will never pass a text empty test
You can avoid using cloud based lists for an appointment app by imposing restrictions on appointment times, say 15 minutes, and you combine doctor names with appointment times for tags. Then the corresponding value would be the name of the one patient that the doctor would see at that time.