Select Menu isssues

Morning All
I’m having troubles with a select menu. I have inserted a select form group but when you select it it doesn’t trigger the workflow and therefore doen’t show any data. The workflow works and under debug delivers the correct data. Here is the code for the select box
‘’’

                        <div class="form-group mb-3">

                            <label for="select1" class="form-label">Select</label>

                            <select id="select1" class="form-select" dmx-bind:options="svrConnAddVol.data.query" optiontext="lastName" optionvalue="userId">

                            </select>

                            <small id="select1Help" class="form-text text-muted">Enter a help text for your select.</small>

                        </div>

                    </div>

‘’’
Is there anything obvious that I’m missing

Many thanks

Hey @Journeyman,

The part of the form you have shared looks correct and you confirm that you get the data in dev tools.

We cannot see what are you doing with the selected value…
I don’t see a onUpdate event on your select and I don’t know if you have assigned its value to what you want to display on page…

In other words what happens when you select an option?

Hi
@famousmag resolved it, I’d set it to no autoload, once I removed that the data loaded. Thanks for your help.

1 Like