Hello,
I have a gallery with Items property: colNewRow
inside this gallery I've added some controls: 1 textbox and 2 combo-boxes. The first combobox has items property: Office365Users.SearchUser({searchTerm:'cbo2/3SignerDocuManagement_2'.SearchText})
and the second has items property: Office365Users.SearchUser({searchTerm:'cbo2/3BackupDocuManagement_2'.SearchText})
I have also an "add icon" added into this gallery with onselect property: Select(Parent);
Patch(
colNewRow,
ThisItem,{
SignatureLevel: ThisItem.SignatureLevel,
Signer: ThisItem.Signer,
Backup: ThisItem.Backup
}
);
Collect(
colNewRow,
{
SignatureLevel: 0,
Signer: Blank(),
Backup: Blank()
}
)
App in edit mode:

app in play mode:

Anybody knows why the gallery isn't showing? Or how I can make it show the empty controls ? The purpose is: the controls are shown when the screen is visible, people fill in the first line and must be able to click the add sign to create a new line in the gallery.
Thanks!