There is a text box in my application and onSelect the following piece is executed :
Refresh('ListName');
ClearCollect(GalleryData,
Filter('ListName', StartsWith(ColumnName.DisplayName, TextBoxName.Text)));
Now the gallery itself take data from GalleryData
Filter(GalleryData, ColumName.Value = "SomeString")
The idea is to provide a gallery with searchbox feature which works on one of the columns, and a filter is there on top of it in the gallery which omits a few records based on value in one of the columns.
Issue 1 : When the application loads - I would like it to be initialized with data which is already in the list including the filter which is in place. I know it doesn't work like that because onSelect helps us to populate GalleryData, is there any alternative for this?
Issue 2 : If on any other page there is some changes in share point list which feeds the data to gallery then those changes are not reflected automatically and I have to write something in textbox to make it work at times. This is more or less linked with previous issue itself, I am guessing if I sort out the initial load feature for gallery then this will be sorted as well.
Thanks for your time.