Dropdown shows multiple columns

Hi,
Is it possible to show multiple columns in a dropdown control?
I.e. following form from MS Access shows a lookupfield, and shows multiple columns of the source table:
2024-07-30_15-04-01

Can this be done with a Plumsail lookup field?

kind regards,
Bart Plessers

Hi @bartplessers,

You can use this approach: Drop Down field — Plumsail Web Forms Documentation

You can also do this with Lookup fields: Lookup field — Plumsail SharePoint Forms Documentation

Hi Ilia,

Thanx a lot!
I managed to use the template to create something like


Great!

But now: next question....
In the above example, the lookup field is a SharePoint lookupfield.
I adress this with

        fd.field("mySharePointLookupField").widgetOptions = {
            template: template
        }

If I try to do the same thing with a Plumsail lookup-control (thus not bound to any SharePoint field), the

fd.field("myPlumsailLookupControl")

seems not to exist.

So my question:
how can I address the widgetOptions of a Plumsail lookup control?

kind regards,
bartplessers

aaaarghhhhhhhh.
How difficult can it be...

I have to use

fd.control(fieldName)

instead of

fd.field(fieldName)

sorry for this!

grtz
bartplessers