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