Hi,
I have a gallery to display a list.
The Item for this gallery is:
SortByColumns(
Filter(
PowerApps_Product_List_V,
SearchText_Main.Text in RequestedBy
),
If(
IsBlank(ProjSortPriority),
"RequestNumber",
ProjSortPriority
),
If(
SortDescending,
SortOrder.Ascending,
SortOrder.Descending
)
)
I also have some comboxs and one text input box to change the query and sortting.
Not sure how to show Loading Image when gallery is reload at same screen.
Thanks!