Can't get the dropdown to function properly. Based on the attached image, are my settings correct?
...
The only thing that is showing is the list of wines in the dropdown.
Is this what I would place in the Custom Query?
Select [LOOKUP] as [VALUE], [WHATEVER] as [TEXT], [ISDEFAULT] = 0 from YOUR_TABLE_NAME;
[LOOKUP]-> the Lookup column of your data
[VALUE] -> the value attribute of the of the dropdpown option.
[LOOKUP] as [VALUE] -> make [LOOKUP] the [VALUE] that gets sent to uPlan. the user does not see this value.
[WHATEVER] -> you need to replace WHATEVER with a data column name
[TEXT] - > the text that represents the value. the text the users sees in the dropdown. this is not what gets sent to uplan.
[WHATEVER] as [TEXT] -> make [WHATEVER] the [TEXT] users will see in the drop down.
[ISDEFAULT] = 0 ; this means index O of the dropdown is default. your query could include logic to determine a different index, therefore a different default selection.
Select [LOOKUP] as [VALUE], [LOOKUP] as [TEXT], [ISDEFAULT] = 0 from DBWines;--
You received this message because you are subscribed to a topic in the Google Groups "XMPie Interest Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/xmpie-users/HHLcgdJQXvU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to xmpie-users...@googlegroups.com.
To post to this group, send email to xmpie...@googlegroups.com.
Visit this group at http://groups.google.com/group/xmpie-users.
For more options, visit https://groups.google.com/d/optout.