Is there any way to have the user select mult...

Is there any way to have the user select multiple items from a list?

I will have a the data in a column called โ€œoptionsโ€ in a table used to look-up things. In the column will be things like โ€œmotorโ€, โ€œremote controlโ€, โ€œchargerโ€, etc.

Basically, I want them to be able to choose any number of the things on this list.

AND, if possible, be able to choose some of them more than once! I suppose itโ€™s just like adding things to a basket on amazon or whereverโ€ฆ either click three times to add 3 motors, or click once, and change a value to 3โ€ฆ

Am I making sense?

Thanks in advance. Craig

0 2 828
2 REPLIES 2

Dur! I think itโ€™s the EnumList thing, isnโ€™t it? Think thatโ€™s okโ€ฆ I can then check those lists with a CONTAINS() thingyโ€ฆ

That it?

An EnumList lets you choose one or more options from a list, but it does not permit you to specify an item more than once or to associate a quantity with a selected item.

If you are implementing a shopping basket, or something like it, you should create a separate child table to hold each ordered item. The child table would contain: 1. The item type 2. The Qty of the item. 3. A ref back to the parent record.

Take a look at the OrderCapture sample app to see how to do this. In particular look at Order (Parent record) and OrderDetail (Child record).

Top Labels in this Space