Hi!,
I have one search box where if I search anything it will filter out the gallery below it. Moment the gallery get filtered out the first row of the gallery get auto-selected. How to disable this auto-selection of gallery first item after search? Kindly help.
Solved! Go to Solution.
Hi @ashokpershad ,
I suggest you modify the formula in the control that require gallery's output (gallery.selected.)
For example:
Add a combo box control and set its Onchange property to:
Set(A,1)
Add a gallery control and set its onselect property to:
Set(A,0)
Then If you want to use a label control to show gallery.selected... , you could set its Text property to:
If(A=1,Blank(),A=0, Gallery1.Selected.PostcodeStart)
Best Regards,
Wearsky
The selection of the first item in a gallery is an automatic feature unless you specify another record in the Default property of the gallery. Do you want to select another record or select none?
Hi @ashokpershad ,
I must admit I have never been asked that one before - I did some testing with a non-existing record ID as the Default and it simply selected the first record (it selected another record successfully if it existed, but would not select nothing). It seems GalleryName.Selected cannot be an invalid reference (I can understand why this is so), so to answer your question, I do not believe it is possible.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thanks @WarrenBelz for your time... let me see if I can find any work around for same.
Hi @ashokpershad ,
I suggest you modify the formula in the control that require gallery's output (gallery.selected.)
For example:
Add a combo box control and set its Onchange property to:
Set(A,1)
Add a gallery control and set its onselect property to:
Set(A,0)
Then If you want to use a label control to show gallery.selected... , you could set its Text property to:
If(A=1,Blank(),A=0, Gallery1.Selected.PostcodeStart)
Best Regards,
Wearsky
User | Count |
---|---|
157 | |
93 | |
78 | |
73 | |
57 |
User | Count |
---|---|
201 | |
166 | |
98 | |
94 | |
79 |