Hi,
I have noticed that the default value of a textbox nested within a gallery control will have the following behaviour which may be a bug. I have put together the following example to demonstrate the bug.
Step 1. Insert button1, which will populate a collection by setting the OnSelect formula to
>> OnSelect = Collect(Collection1, {Column1Name: “test”})
Step 2. Insert a gallery control and set “Collection1” as the data source.
>> Items = Collection1
Step 3. Insert a textbox into the gallery control. Set the default property of the textbox to the Colum1Name
>> Default = Column1Name
Now each time when you click “Button1” you will see a new row added to the gallery with the “test” string displayed.. as expected.

Step 4. Type a new string into the text box on the first row of the gallery. Now press button 1. Each time you press “button 1” now the default value of the textbox is no longer the Colum1Name value as expected.

Has anyone else experienced this issue or able to offer a work around?