tpogue
(T Pogue)
June 11, 2024, 12:51pm
1
Documenting this here for future reference.
To create a simple dropdown list, use a Combo Box. There are four types.
Reusable (system list): set the following under Properties:
Data > EpBinding = View.Column e.g. SearchFilters.ColumnName
Reusable Combo > Type = ResourceGroup.ResourceGroupCombo (e.g.)
Reusable Combo > Sub Type = default
Advanced > Header = checked
Hardcoded list : set the following under Properties:
Data > EpBinding = View.Column e.g. SearchFilters.ProjectStatus
Advanced > Drop Down Style = DropDownList
Advanced > Append List = checked
Advanced > TextField = display
Advanced > Value Field = value
Add the list items under Advanced > List
BAQ list : set the following under Properties:
Data > EpBinding = View.Column e.g. SearchFilters.ProjectStatus
Advanced > Data Mode = rows
Advanced > BAQ Query = id of the BAQ with the results, e.g. IA_PartClassesnoX
Advanced > TextField = what shows up in the list, e.g. PartClass_Description
Advanced > Value Field = the key field, e.g. PartClass_ClassID
UD Table : set the following under Properties:
Data > EpBinding = View.Column e.g. SearchFilters.ColumnName
Reusable Combo > Service = [service name] (e.g. Ice.BO.UD15Svc)
Reusable Combo > Service Method = GetList
Advanced > TextField = what shows up in the list, e.g. Key2
Advanced > Value Field = the key field, e.g. Key1
Hardcoded List example:
17 Likes
klincecum
(Kevin Lincecum)
June 11, 2024, 1:00pm
2
This is my github / docs system too.
4 Likes
dcamlin
(David Camlin)
June 11, 2024, 1:02pm
3
The problem is remembering how to find what you documented!
3 Likes
JasonMcD
(Jason McDermott)
June 11, 2024, 1:16pm
4
Is it vain to search this site for posts written by myself? That’s how I find my own documentation.
1 Like
klincecum
(Kevin Lincecum)
June 11, 2024, 1:19pm
5
Search here is really good. Especially if you include a person tag.
2 Likes
dcamlin
(David Camlin)
June 11, 2024, 1:19pm
6
I wouldn’t call it vain at all, haha.
I’ve sadly come on this site searching for help and stumbling on my own solutions before… cause, you know… 6 months ago, I knew the answer.
7 Likes
Hally
(Simon Hall)
June 11, 2024, 1:21pm
7
Don’t forget you can bookmark too
4 Likes
JasonMcD
(Jason McDermott)
June 11, 2024, 1:44pm
8
Oh, bookmark in the site itself! Hmm, never tried that.
2 Likes
JasonMcD
(Jason McDermott)
June 11, 2024, 2:02pm
10
Oh, cool, it can send you a reminder on the bookmark!
THAT is awesome.
1 Like
Ernie
(Ernie Lowell)
June 13, 2024, 2:39pm
11
I’ve had CUSTOMERS ask me a question I couldn’t answer, and then later that same day they’d find my 2-year-old answer here and (somewhat gleefully) wonder why I didn’t remember it.
2 Likes
dcamlin
(David Camlin)
June 13, 2024, 2:58pm
12
Glad its not just me. My memory retention has always been horrible. I did well in school because I could cram for a test and do well. But if I took the same test 2-3 weeks later… I’d probably bomb. I learn by repetition, so if its something I don’t do all the time, I have to go back and research how I did it all over again.
klincecum
(Kevin Lincecum)
June 13, 2024, 3:09pm
13
That’s why when I search, if I don’t find it first time, I add my tag to the search…
To see if I was smarter before…
1 Like
tpogue
(T Pogue)
June 13, 2024, 4:16pm
14
Our brains are overflowing!
1 Like
To use UserCodes -
First setup the UserCode Type and a list of values.
This is how to setup the Reusable Combo.
End result
2 Likes
dheinrich
(Dylan Heinrich)
November 21, 2024, 6:27pm
16
Awesome post! Thank you for compiling this. This helped me quickly get a BAQ Drop Down list set up and mapped in App Studio
1 Like