Hi All,
I am working on a simple app to collect contact information, app is working fine with SP connection but does not work with Dataverse.
1) With Sharepoint it is as follows:
- Button 'On Select' :
ClearColelct(updates,
{Name: Blank(),
TypeContact: Blank(),
ID:1 });
Set(varContacts, "add")
Gallery Items:
If (varContacts = "add", updates, Filter('Contact Users', TypeContact = "Contact"))
Dropdown on the gallery:
Items:DropdownSample
On Change:
If(varContatcs="Add",
With ({wLastID: Last(Updates).ID},
If (varContacts="Add" And ThisItem.ID = wLastID,
Collect(updates, {ID: wLastID+1}
)))
Works like a charm, everytime I change dropdown, galerry repeats with new line, but when I switch to dataverse it does not work, I cannot refer to ThisItem.ID I only get "IsSelected" as an option.
I do not understand the issue, is it a DV thing that it cannot show empty rows? Or am I missing something?