Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

'Ctrl' click by actions in Text boxes on same field

Hello guys,

I've a question, which probably will be solved easily but for some reason im not getting it right.

I've one field with different values. Now I would like to work with mulitple text boxes which contains actions to select a value from that specific field.

But it just selects the new value you click on but actually the first selection should stay and you need to add the next value to your selection by clicking on the text box.

See a sample application attached.

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Guy,

Have a look at the attached file.

View solution in original post

5 Replies
shiveshsingh
Master
Master

you want to retain previous selection on clicking other textbox?

Anonymous
Not applicable
Author

Yes thats right, but the all the 3 textboxes are based on the same field.

niclaz79
Partner - Creator III
Partner - Creator III

Hi,

You can create a list of selections based on previous selections by concatenating with already selected parts.

For your first box, the expression for 'Search String' would be:

='(' & GetFieldSelections(Field) & '|' & 'Test)'

Note that this would just add more and more 'Test' to the string so your 'current selections' may look weird, but the functionality is as expected.

tamilarasu
Champion
Champion

Hi Guy,

Have a look at the attached file.

Anonymous
Not applicable
Author

Thanks for the good work tamilarasu‌ !

Works fine now!