Hi all,
As i'm pretty new to Powerapps I would like to ask help from an issue i'm facing.
Let me try to describe this underneath :
I have a nested gallery, both based on a collection.

Parent Gallery items definition :
SortByColumns(
GroupBy(
Filter(
colQuestionnair,
CheckList.Code = "XXXXXXX"
),
"crbdd_subject",
"grpBySubject"
),
"crbdd_subject",
Ascending
)
Child Gallery Items definition :
ThisItem.grpBySubject
I've added some field on the Child gallery

What i'm trying to do is, update the collection based on selection of an icon.

to achieve tis, i've added columns to the collection
ClearCollect(
colquestionnaire,
AddColumns(
'Safety Questionnaires',
"OK",
false,
"NOK",
false,
"NA",
false
)
)
OnSelect of the icon(s) - (unbounded to gallery)
Patch(colQuestions,ThisItem,{Ok:true,Nok:false});
So far so good to update the record, but the screen is flashing. I know the reason is because i update the collections so the gallery screen is refreshing. This is not workable for the end user. How can i avoid refreshing the screen but update the collection.
I tried al lot of different scenario's but i'm not able to achieve a good solution.
Please could someone help me with this ?
Kind regards
Steve