I have parent & child blank vertical Gallery and for parent DataSource is GroupBy(jsonData,"group_id","DATA")
here i have two groups. for child Gallery DataSource is ThisItem.DATA
, in child gallery there are 5 text input fields, after clicking Submit button i am unable to get text input fields data from child Gallery.
I have tried below methods but ChildGal items count is always 0 onlyForAll(ParentGal.AllItems,Notify(ThisItem.ChildGal.AllItemsCount,Success,3000))
,Notify(ChildGal.AllItemsCount,Success,3000))
Powerapps - Unable to get child gallery items
548 Views Asked by Naveen Kumar At
1
Currently we cannot access the AllItems property of a nested gallery from outside the outer gallery. One way to work around this limitation is to collect the data on the outer gallery (such as in a hidden label), and then this value can be accessed from outside.
For example, if I have this dataset:
And my (outer) gallery Items property is set to
GroupBy( CityPopulations, "Country", "Cities" )
, and I have the name and population of the cities in a nested gallery:I can add a (hidden) label to the outer gallery with the following expression for its Text property:
This will merge all properties of the nested gallery using the separators
|
(for each row) and$
(for the properties I'm interested in).From outside the galleries, I can then reference that property
Hope this helps!