Hi
I have a Gallery which is connected to a SharePoint Online List.
I have a textbox and a button "Search"
When I click search I do this in the OnSelect
UpdateContext({gFilter:tbSearch.Text});
But my Gallery gives a Delegation warning ...
If(
IsBlank(gFilter),
MyList,
Filter(
MyList,
gFilter in Title
)
)
Anyone know why?
Thanks
P