Hi Guys,
I'm building a gallery that is being filtered by a combobox + a text box, the data comes from a Sharepoint list with around ~200 entries, the filter is currently working but it's giving a delegation warning and it's kinda laggy.
I've the print of the code that I'm using, can someone help me to build a more efficient code that doesnt run into delegation issues, and that the response is faster? It would be really appreciated!
Code:
Filter('Digital_Library_2.0';
(
IsEmpty(
localizar_catalog.SelectedItems.Result)
||
IsBlank(
localizar_catalog.SelectedItems.Result)
||
field_3 in localizar_catalog.SelectedItems.Result
)
&&
(
TextInput1_1.Text in Title
||
TextInput1_1.Text in field_1
||
TextInput1_1.Text in field_2
)