Page 1 of 1

Multiple Columns in a SelectBox

Posted: Thu Jun 13, 2019 3:13 pm
by thawley
Hello,

I am trying to show multiple columns in a selectbox and return a single value and it is not working. I have two fields selected in the choice options field and the return field in the choice values field, but the only thing that displays in the box is the first field in the choice options field parameter. See attached screen shots, in the properties I selected to display employee name and number but only name is showing. Is there a way to display multiple columns in Genie? Or is this only available in the Rich screen display.

Thank you,

Re: Multiple Columns in a SelectBox

Posted: Thu Jun 13, 2019 3:16 pm
by Scott Klement
What happens if you change the 'choice options field' to something like this?

Code: Select all

TRIM(SLNAME) || ' ' || SLSMN
Does that work for you?

Re: Multiple Columns in a SelectBox

Posted: Thu Jun 13, 2019 3:27 pm
by thawley
That worked great. Thank you.